kosiew commented on issue #14281: URL: https://github.com/apache/datafusion/issues/14281#issuecomment-2615424170
I used duckdb to copy go-testfile.parquet to go-testfile3.parquet D create table data1 as select * from 'go-testfile.parquet'; D copy data1 to 'go-testfile3.parquet' (format 'parquet'); ``` DataFusion CLI v44.0.0 > select * from 'tests/data/go-testfile3.parquet' where age > 10; +--------+---------+-----+-------+--------+--------------------------+---------+ | city | country | age | scale | status | time_captured | checked | +--------+---------+-----+-------+--------+--------------------------+---------+ | Athens | Greece | 32 | 1 | 20 | 2025-01-24T17:34:00.715Z | true | +--------+---------+-----+-------+--------+--------------------------+---------+ 1 row(s) fetched. Elapsed 0.014 seconds. > select * from 'tests/data/go-testfile.parquet' where age > 10; External error: Parquet error: External: bad data ``` From tests, it looks like the issue is with go-parquet. -- 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