Skip to content

Commit 9ca3497

Browse files
committed
feat: update pgwire to latest release
1 parent 9491dab commit 9ca3497

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

Cargo.lock

Lines changed: 13 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

arrow-pg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bytes.workspace = true
2727
chrono.workspace = true
2828
datafusion = { workspace = true, optional = true }
2929
futures.workspace = true
30-
pgwire = { workspace = true, default-features = false, features = ["server-api"] }
30+
pgwire = { workspace = true, default-features = false, features = ["server-api", "pg-ext-types"] }
3131
postgres-types.workspace = true
3232
rust_decimal.workspace = true
3333

datafusion-postgres/src/testing.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ impl ClientInfo for MockClient {
8686
fn client_certificates<'a>(&self) -> Option<&[rustls_pki_types::CertificateDer<'a>]> {
8787
None
8888
}
89+
90+
fn sni_server_name(&self) -> Option<&str> {
91+
None
92+
}
8993
}
9094

9195
impl ClientPortalStore for MockClient {

0 commit comments

Comments
 (0)