We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92a1bdc commit 59e9822Copy full SHA for 59e9822
src/flowerpower/fs/ext.py
@@ -950,9 +950,9 @@ def _read_parquet(
950
# Unify schemas before concatenation if opt_dtypes or multiple tables
951
if isinstance(tables, list):
952
if len(tables) > 1:
953
- schemas = [t.schema for t in tables]
954
- unified_schema = unify_schemas_pa(schemas)
955
- tables = [cast_schema(t, unified_schema) for t in tables]
+ schemas = [t.schema for t in tables]
+ unified_schema = unify_schemas_pa(schemas)
+ tables = [cast_schema(t, unified_schema) for t in tables]
956
result = pa.concat_tables(
957
[table for table in tables if table.num_rows > 0],
958
promote_options="permissive",
0 commit comments