Skip to content

Commit a0300ac

Browse files
chore(deps): bump pgwire from 0.33.0 to 0.34.0 (#216)
* chore(deps): bump pgwire from 0.33.0 to 0.34.0 Bumps [pgwire](https://github.com/sunng87/pgwire) from 0.33.0 to 0.34.0. - [Release notes](https://github.com/sunng87/pgwire/releases) - [Changelog](https://github.com/sunng87/pgwire/blob/master/CHANGELOG.md) - [Commits](sunng87/pgwire@v0.33.0...v0.34.0) --- updated-dependencies: - dependency-name: pgwire dependency-version: 0.34.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * feat: update pgwire to latest release --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ning Sun <sunng@protonmail.com>
1 parent 116141d commit a0300ac

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bytes = "1.10.1"
1919
chrono = { version = "0.4", features = ["std"] }
2020
datafusion = { version = "50", default-features = false }
2121
futures = "0.3"
22-
pgwire = { version = "0.33", default-features = false }
22+
pgwire = { version = "0.34", default-features = false }
2323
postgres-types = "0.2"
2424
rust_decimal = { version = "1.39", features = ["db-postgres"] }
2525
tokio = { version = "1", default-features = false }

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)