alamb commented on issue #8092: URL: https://github.com/apache/arrow-datafusion/issues/8092#issuecomment-1857762595
> If user don't want to update the arrow-rs or the datafusion version to resolve this issue, they can disable the page index: > set the `enable_page_index` to `false`. to skip this bug. That is a good point The workaround suggested by @liukun4515 can be implemented like this: ### SQL ```sql ❯ set datafusion.execution.parquet.enable_page_index = false; 0 rows in set. Query took 0.000 seconds. ``` ### Programatically By setting [`ParquetOptions::enable_page_index`](https://docs.rs/datafusion/latest/datafusion/common/config/struct.ParquetOptions.html#structfield.enable_page_index) to false -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
