mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-31 04:10:38 +00:00
fix: resolve postgres format and sync cleanup issues (#7928)
This commit is contained in:
@@ -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",
|
||||
] }
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user