fix: resolve postgres format and sync cleanup issues (#7928)

This commit is contained in:
Ning Sun
2026-04-08 14:41:19 +08:00
committed by GitHub
parent 2f8607138d
commit 70ad412092
3 changed files with 5 additions and 5 deletions

View File

@@ -91,7 +91,7 @@ otel-arrow-rust.workspace = true
parking_lot.workspace = true
partition.workspace = true
pg_interval = { version = "0.5.2", package = "pg_interval_2" }
pgwire = { version = "0.38.2", default-features = false, features = [
pgwire = { version = "0.38.3", default-features = false, features = [
"server-api-ring",
"pg-ext-types",
] }

View File

@@ -529,7 +529,7 @@ impl ExtendedQueryHandler for PostgresServerHandlerInner {
.collect::<Vec<_>>();
if let Some(schema) = &sql_plan.schema {
schema_to_pg(schema, &Format::UnifiedBinary, None)
schema_to_pg(schema, &Format::UnifiedText, None)
.map(|fields| DescribeStatementResponse::new(param_types, fields))
.map_err(convert_err)
} else {