pmarks commented on issue #8826: URL: https://github.com/apache/arrow-rs/issues/8826#issuecomment-3523803533
@etseidl awesome thanks so much. I was able to make a tiny reproducing parquet with the following script, using `fastparquet=2024.02` Here's the file in case it's useful: [test.zip](https://github.com/user-attachments/files/23509361/test.zip) ```python import pandas import fastparquet def main(): df = pandas.DataFrame({"a": range(100), "b": range(100)}) fastparquet.write('outfile.pq', df) if __name__ == "__main__": main() ``` -- 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]
