kosiew opened a new issue, #14929: URL: https://github.com/apache/datafusion/issues/14929
### Describe the bug `cargo run -p datafusion-cli -- -c "select * from 'datafusion/substrait/tests/testdata/data.parquet'"` Before #14877 ``` +---+-----+------------+-------+------------+-----+ | a | b | c | d | e | f | +---+-----+------------+-------+------------+-----+ | 1 | 2.0 | 2020-01-01 | false | 4294967296 | 'a' | | 3 | 4.5 | 2020-01-01 | true | 2147483648 | 'b' | +---+-----+------------+-------+------------+-----+ 2 row(s) fetched. Elapsed 0.026 seconds. ``` After #14877 ``` +---+-----+------------+-------+------------+-----+ | a | b | c | d | e | f | +---+-----+------------+-------+------------+-----+ +---+-----+------------+-------+------------+-----+ 2 row(s) fetched. Elapsed 0.025 seconds. ``` ### To Reproduce cargo run -p datafusion-cli -- -c "select * from 'datafusion/substrait/tests/testdata/data.parquet'" ### Expected behavior Display the SQL results ### Additional context I chanced upon this while testing #14908 at datafusion-cli -- 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.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