nick-ulle commented on issue #39603:
URL: https://github.com/apache/arrow/issues/39603#issuecomment-3104370224

   This bug or one with the same error message also seems to prevent R Arrow 
from reading Parquet files with Categorical or Enum columns created in Python 
Polars.
   
   Reprex tested with Python Polars 1.31.0 and R Arrow 20.0.0.2:
   
   ```python
   import polars as pl
   
   data = pl.DataFrame({"x": ["a", "b"]}, schema={"x": pl.Categorical()})
   data.write_parquet("test.parquet")
   ```
   
   ```r
   library("arrow")
   read_parquet("test.parquet")
   ```


-- 
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]

Reply via email to