We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae486d commit d82a63dCopy full SHA for d82a63d
src/nested_pandas/nestedframe/io.py
@@ -246,7 +246,7 @@ def _read_parquet_into_table(
246
def _read_table_with_partial_load_check(data, columns=None, filesystem=None, **kwargs):
247
"""Read a pyarrow table with partial load check for nested structures"""
248
try:
249
- return pq.read_table(data, columns=columns, **kwargs)
+ return pq.read_table(data, columns=columns, filesystem=filesystem, **kwargs)
250
except ArrowInvalid as e:
251
# if it's not related to partial loading of nested structures, re-raise
252
if "No match for" not in str(e):
0 commit comments