shachibista commented on issue #374: URL: https://github.com/apache/arrow-go/issues/374#issuecomment-2867878757
Thanks for the quick response! Here's what reading the column metadata with duckdb presents: ``` select column_id, row_group_id, row_group_bytes from parquet_metadata('out.parquet'); ┌───────────┬──────────────┬─────────────────┐ │ column_id │ row_group_id │ row_group_bytes │ │ int64 │ int64 │ int64 │ ├───────────┼──────────────┼─────────────────┤ │ 0 │ 0 │ 1090830385 │ │ 1 │ 0 │ 1090830385 │ │ 2 │ 0 │ 1090830385 │ │ 3 │ 0 │ 1090830385 │ │ 4 │ 0 │ 1090830385 │ │ 5 │ 0 │ 1090830385 │ │ 6 │ 0 │ 1090830385 │ │ 7 │ 0 │ 1090830385 │ │ 8 │ 0 │ 1090830385 │ │ 9 │ 0 │ 1090830385 │ │ 10 │ 0 │ 1090830385 │ │ 11 │ 0 │ 1090830385 │ │ 12 │ 0 │ 1090830385 │ │ 13 │ 0 │ 1090830385 │ │ 14 │ 0 │ 1090830385 │ │ 15 │ 0 │ 1090830385 │ │ 16 │ 0 │ 1090830385 │ │ 17 │ 0 │ 1090830385 │ │ 18 │ 0 │ 1090830385 │ │ 19 │ 0 │ 1090830385 │ │ 20 │ 0 │ 1090830385 │ │ 21 │ 0 │ 1090830385 │ │ 22 │ 0 │ 1090830385 │ │ 23 │ 0 │ 1090830385 │ │ 24 │ 0 │ 1090830385 │ │ 25 │ 0 │ 1090830385 │ │ 26 │ 0 │ 1090830385 │ │ 27 │ 0 │ 1090830385 │ │ 28 │ 0 │ 1090830385 │ ├───────────┴──────────────┴─────────────────┤ │ 29 rows 3 columns │ └────────────────────────────────────────────┘ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org