Skip to content

Commit 843eb41

Browse files
committed
feat: make duckdb client config public
1 parent 41023f1 commit 843eb41

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/duckdb/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ pub type Result<T> = std::result::Result<T, Error>;
9090
#[derive(Debug)]
9191
pub struct Client {
9292
connection: Connection,
93-
config: Config,
93+
/// The client's configuration.
94+
pub config: Config,
9495
}
9596

9697
/// Configuration for a client.

0 commit comments

Comments
 (0)