alamb commented on issue #15456: URL: https://github.com/apache/datafusion/issues/15456#issuecomment-2759121460
I also tried disabling file scan repartition and it still happens ```sql > set datafusion.optimizer.repartition_file_scans = false; 0 row(s) fetched. Elapsed 0.001 seconds. > explain select * from 'part.csv'; +---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | plan_type | plan | +---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | logical_plan | TableScan: part.csv projection=[p_partkey, p_name, p_mfgr, p_brand, p_type, p_size, p_container, p_retailprice, p_comment] | | physical_plan | DataSourceExec: file_groups={1 group: [[Users/andrewlamb/Downloads/part.csv]]}, projection=[p_partkey, p_name, p_mfgr, p_brand, p_type, p_size, p_container, p_retailprice, p_comment], file_type=csv, has_header=true | | | | +---------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 2 row(s) fetched. Elapsed 0.017 seconds. > select * from 'part.csv'; Arrow error: Parser error: Error while parsing value p_partkey for column 0 at line 100001 ``` -- 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