Ning Sun
Ning Sun
That's weird I cannot reproduce it with psql 16.1 on archlinux. ``` psql -h 127.0.0.1 -p 5433 psql (16.1, server 0.19.2) WARNING: psql major version 16, server major version 0.19....
And off-topic, I'm curious that are you investigating pgwire for some new idea/project?
For the `psql` issue, I found it's an issue that can only reproduce on psql 14.x client compiled for homebrew. ``` psql: error: connection to server at “5s0kjjpih6a0.us-west-2.aws.greptime.cloud” (52.25.118.248), port...
Actually I have sent pull request to revelytix. But it seems they are not very active on this project. And I thought you might have token over the project ......
Actually in template/expression engine we might not use the visitor pattern for all cases. I prefer `as_value` and `Value` APIs for path navigation. Does it make sense to add methods...
As long as `Mappable`'s visit api is implemented like [this](https://github.com/tokio-rs/valuable/blob/master/valuable/src/mappable.rs#L137), it always take `O(n)` to access a field using visitor API.
> get_by_key is not really possible to implement for Mappable w/ generic key types for HashMap (as far as I could tell). I see. Thank you for clarification.
Hitting the same situation with #525. We need to be able to get the registered metric from `register` function. The ideal usage is whenever I call `register` with legal input,...
Before we can get it work on Windows, is it possible to at least compile on Windows? I received report that my tests doesn't compile on Windows because I use...
@YangKeao Thank you! That's better solution.