ClickHouse / ClickHouse/adbc_clickhouse
Implement `Connection::get_option*()`
- Dominant language
- Rust
- Stars
- 25
- Forks
- 8
- Avg merge
- 2d 37m
- Merged PRs (30d)
- 4
Description
Related: #7
```rust
pub enum OptionConnection {
/// Whether autocommit is enabled.
AutoCommit,
/// Whether the current connection should be restricted to being read-only.
ReadOnly,
/// The catalog used by the connection.
/// # Since
/// ADBC API revision 1.1.0
CurrentCatalog,
/// The database schema used by the connection.
/// # Since
/// ADBC API revision 1.1.0
CurrentSchema,
/// The isolation level of the connection. See [IsolationLevel].
IsolationLevel,
/// Driver-specific key.
Other(String),
}
```
Also blocked on https://github.com/ClickHouse/clickhouse-rs/issues/358
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.