fix(iox_catalog): include missing column in return

The Parquet::create() method was missing the `max_sequence_number`
column in the query response!
pull/24376/head
Dom Dwyer 2023-04-28 15:36:00 +02:00
parent c030da7b0e
commit 4cf4433c1e
No known key found for this signature in database
GPG Key ID: E4C40DBD9157879A
1 changed files with 1 additions and 1 deletions

View File

@ -1444,7 +1444,7 @@ INSERT INTO parquet_file (
VALUES ( $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14 )
RETURNING
id, table_id, partition_id, object_store_id,
min_time, max_time, to_delete, file_size_bytes,
max_sequence_number, min_time, max_time, to_delete, file_size_bytes,
row_count, compaction_level, created_at, namespace_id, column_set, max_l0_created_at;
"#,
)