Open uditrana opened 3 days ago
This seems to work though:
import polars as pl
import daft
df = pl.DataFrame(
{"a": [1, 2, 3, 4, 5], "b": [5, 4, 3, 2, 1], "c": [True, False, None, False, None]},
)
display(df)
display(
daft.from_arrow(df.to_arrow())
)
Ah, seems we haven't added RLE decoding support for booleans. Leaving a note for myself to implement this in src/arrow2/src/io/parquet/read/deserialize/boolean/basic.rs
Describe the bug
Daft doesnt support some feature in the parquet file format for boolean columns.
To Reproduce
Expected behavior
You can read these boolean columns
Component(s)
Parquet
Additional context
No response