Austin Bonander
Austin Bonander
I don't see any API route or anything in the UI about promoting an existing user to admin: https://github.com/kellnr/kellnr/blob/1ae7d3fe0f6c7f7f8e5fb39964114a85410f70b6/crates/kellnr/src/main.rs#L83-L95
Similar to #357, the `Optionable` trait from the ADBC Rust API requires being able to read back previously set options: https://github.com/apache/arrow-adbc/blob/3078bb6ee00c7554de37f3b98fa47cde26004c0f/rust/core/src/lib.rs#L67-L84 This could easily be exposed on `Client` as something...
The ADBC Rust client spec requires all types to implement `Optionable`, which has options being set through a mutable reference: https://github.com/apache/arrow-adbc/blob/3078bb6ee00c7554de37f3b98fa47cde26004c0f/rust/core/src/lib.rs#L67-L84 This currently requires cloning the `Client` for setting every...
It _could_ be useful to be able to bind a binary string as a parameter, but `ParamSerializer::serialize_bytes()` is currently stubbed out: https://github.com/ClickHouse/clickhouse-rs/blob/ea5f0a19af7fc1dc0809297c2995c64463819bd1/src/sql/ser.rs#L359-L364 I don't really understand why it's not supported,...
**Note** not merged yet: https://github.com/ClickHouse/ClickHouse/pull/88616 The `mac_address` crate is the only one that's actively maintained: https://crates.io/crates/mac_address
### Use case it should be possible to put configuration parameters for `Client` into a single connection string. Example from JS client: https://github.com/ClickHouse/clickhouse-js/blob/main/examples/url_configuration.ts ### Describe the solution you'd like *...
### Use case Proxies may require adding a path to the URL: https://clickhouse.com/docs/integrations/javascript#proxy-with-a-pathname ### Describe the solution you'd like * Add `Client::with_pathname()` ### Describe the alternatives you've considered ### Additional...
### Use case ClickHouse supports the `replace_running_query` feature: https://clickhouse.com/docs/operations/settings/settings#replace_running_query `query_id` can be set manually via `with_option()`, but we should be setting this automatically. ### Describe the solution you'd like *...
It should be possible to write a custom `INSERT` statement.
The design choice of using Serde for serialization leads to sub-optimal DX as we have no control over the encoding of external types. Because the default serialization differs from the...