AdMub commented on issue #957: URL: https://github.com/apache/datafusion-python/issues/957#issuecomment-3892827082
Hi! I tested this against the latest `main` branch to see if the issue persists. I used a reproduction script to create a `FixedSizeList` via PyArrow, registered it with `SessionContext`, and wrote it to Parquet using `COPY ... TO ...`. **Result:** The schema in the output Parquet file now correctly retains the `FixedSizeList` type. ```text Original Type: fixed_size_list<item: int32>[2] Writing to Parquet via DataFusion... Result Type: fixed_size_list<item: int32>[2] SUCCESS: Type was preserved! -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
