Skip to content

Commit c2459b7

Browse files
authored
fix: use text format as default in describe statement (#323)
1 parent 9442098 commit c2459b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion-postgres/src/handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ impl QueryParser for Parser {
408408
let schema = plan.schema();
409409
let fields = arrow_schema_to_pg_fields(
410410
schema.as_arrow(),
411-
column_format.unwrap_or(&Format::UnifiedBinary),
411+
column_format.unwrap_or(&Format::UnifiedText),
412412
None,
413413
)?;
414414

0 commit comments

Comments
 (0)