Will Eaton
Will Eaton
Maybe one of the more seasoned maintainers can weigh in, but for configuring this, would it make sense to inject via environment variable? Something like: `CONNECTORX_ORCALE_SYSTEM_AUTH`
@mdeakyne if you can build/compile connectorx locally you could verify that the proposed solution above would work on my fork: https://github.com/sfu-db/connector-x/pull/203, I'm not sure how to test it myself :slightly_smiling_face:
@wangxiaoying host is dynamically set to localhost if nothing is set to we compare against that to enable system auth, it'd probably be better to add a flag var that...
@ritchie46 good to know that for the lazy frame implementation we are blocked a little bit by the arrow rust bindings. I'll hack around some with the eager frames to...
I believe this is blocked upstream by https://github.com/sqlparser-rs/sqlparser-rs/issues/757, related MR: https://github.com/sqlparser-rs/sqlparser-rs/pull/839
If you are an arm user and have the rust toolchain installed and install `sqloxide` from git, you should be able to build the .whl you need locally (poetry should...
Here's an example Trino Rust client implementation: https://github.com/joshthoward/trino-rust-client, it's basically just a wrapper around a few REST API calls. There are also very tricky things like supporting OAuth and automatically...
Getting type check failures because of pre python 3.9 available type hint syntax that is being used, like `dict[str, Any]`. Do we want to fix that in other parts of...
Thanks @tatiana, to be honest I actually forget why I needed this. Do you have any examples you can share publicly of how this would be useful? Perhaps I can...