senyosimpson commented on issue #14281: URL: https://github.com/apache/datafusion/issues/14281#issuecomment-2620214852
Interestingly enough, I can run a query on this just fine using duckdb ``` » duckdb v1.1.3 19864453f7 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database. D select * from 'go-testfile.parquet' where age > 10; ┌─────────┬─────────┬───────┬───────┬────────┬────────────────────────────┬─────────┐ │ city │ country │ age │ scale │ status │ time_captured │ checked │ │ varchar │ varchar │ uint8 │ int16 │ uint32 │ timestamp with time zone │ boolean │ ├─────────┼─────────┼───────┼───────┼────────┼────────────────────────────┼─────────┤ │ Athens │ Greece │ 32 │ 1 │ 20 │ 2025-01-25 13:13:48.332+02 │ true │ └─────────┴─────────┴───────┴───────┴────────┴────────────────────────────┴─────────┘ ``` And it has the format version you'd expect ``` D select file_name, created_by, format_version from parquet_file_metadata('go-testfile.parquet'); ┌─────────────────────┬─────────────────────────────────────────────────────────┬────────────────┐ │ file_name │ created_by │ format_version │ │ varchar │ varchar │ int64 │ ├─────────────────────┼─────────────────────────────────────────────────────────┼────────────────┤ │ go-testfile.parquet │ github.com/parquet-go/parquet-go version 0.24.0(build ) │ 2 │ └─────────────────────┴─────────────────────────────────────────────────────────┴────────────────┘ ``` However, if I use PyArrow and write out a file with the version format 2.6, datafusion works fine. So I'm still not sure -- 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...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org