Skip to content

Commit

Permalink
FIX-modin-project#7221: Don't use 'use_legacy_dataset=False' for 'Par…
Browse files Browse the repository at this point in the history
…quetDataset'

Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Apr 26, 2024
1 parent 74cf1cf commit 330e5c6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions modin/core/io/column_stores/parquet_dispatcher.py
Original file line number Diff line number Diff line change
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 330e5c6

Please sign in to comment.