Skip to content

Commit

Permalink
FIX-#7221: Don't use 'use_legacy_dataset=False' for 'ParquetDataset' (#…
Browse files Browse the repository at this point in the history
…7222)

Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Apr 29, 2024
1 parent 5b96219 commit c48bb30
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions modin/core/io/column_stores/parquet_dispatcher.py
Expand Up @@ -187,9 +187,7 @@ class PyArrowDataset(ColumnStoreDataset):
def _init_dataset(self): # noqa: GL08
from pyarrow.parquet import ParquetDataset

return ParquetDataset(
self.fs_path, filesystem=self.fs, use_legacy_dataset=False
)
return ParquetDataset(self.fs_path, filesystem=self.fs)

@property
def pandas_metadata(self):
Expand Down

0 comments on commit c48bb30

Please sign in to comment.