andygrove opened a new issue, #7433: URL: https://github.com/apache/arrow-datafusion/issues/7433
### Describe the bug After upgrading the DataFusion Python bindings to version 30, I saw some test failures for writing compressed Parquet files. https://github.com/apache/arrow-datafusion-python/pull/464#issuecomment-1695692034 It looks like this feature was removed from DataFusion in [this commit](https://github.com/apache/arrow-datafusion/pull/7283). Note the comment `// TODO implement options`. ### To Reproduce Try writing a parquet file and specify a compression level in the writer properties: ```rust let writer_properties = WriterProperties::builder() .set_compression(compression_type) .build(); ``` ### Expected behavior The option should not be ignored. ### Additional context _No response_ -- 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]
