Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.13.0
Description
Conversion of dict encoded null column fails in parquet writing when using RowGroups
import pyarrow.parquet as pq import pandas as pd import pyarrow as pa df = pd.DataFrame({"col": [None] * 100, "int": [1.0] * 100}) df = df.astype({"col": "category"}) table = pa.Table.from_pandas(df) buf = pa.BufferOutputStream() pq.write_table( table, buf, version="2.0", chunk_size=10, )
fails with
pyarrow.lib.ArrowIOError: Column 2 had 100 while previous column had 10
Attachments
Issue Links
- links to