Details
-
Bug
-
Status: In Progress
-
Critical
-
Resolution: Unresolved
-
None
Description
Reading nested field does not work with use_legacy_dataset=False.
This works:
import pyarrow.parquet as pq t = pq.read_table( source=*filename*, columns=['store_key', 'properties.country'], use_legacy_dataset=True, ).to_pandas()
This does not work (for the same parquet file):
import pyarrow.parquet as pq t = pq.read_table( source=*filename*, columns=['store_key', 'properties.country'], use_legacy_dataset=False, ).to_pandas()
Attachments
Issue Links
- is blocked by
-
ARROW-11259 [Python] Allow to create field reference to nested field
- Resolved
- is related to
-
ARROW-17540 [Python] Can not refer to field in a list of structs
- Open
- links to