Kevin Flansburg
Kevin Flansburg
Yes, but where did the code in your first message come from? Is that your code? If so, you should update it to be compatible with the new interface.
@xortive, might need your help to get this working. I believe that using `StartTLS` is the right way to go based on `node-postgres` code. I'm pretty confident that this example...
I've tried disabling TLS entirely, as well as constructing the `Config` object without the full connection string (just username, password, and database). Same error both times. Could be a bug...
> `simple_query` won't use prepared statements but `query` will, I believe. The issue is that tokio-postgres doesn't support unnamed statements and Hyperdrive doesn't support prepared statements - so `query` won't...
Looks like Rust `1.78` introduced some new clippy lints. I've fixed ours, but looks like `wasm-bindgen` may need to fix some as well. https://github.com/rustwasm/wasm-bindgen/issues/3945
@himikof How does this look? I'm still waiting to hear back on the intended behavior of the range API.
> As this PR already is a breaking change for this API (no implicit integer conversions in Rust), I ask to reconsider changing the Rust enum shape to remove this...
@himikof I've updated `Range` to have more clear options / documentation. I did keep 4 options, although you could achieve `Prefix` using `OffsetWithLength { offset: 0, length N }`, I...
@avsaase can you rebase on main to fix the clippy lints?
There are only a handful of endpoints here, and this very closely matches the pattern used in the main test suite, would it be simpler to just move these test...