Skip to content

Commit

Permalink
respect multithreading flag
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 committed Sep 9, 2023
1 parent e07972b commit 9066248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarking/parquet/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def boto3_get_object_read(path: str, columns: list[str] | None = None) -> pa.Tab


def daft_native_read(path: str, columns: list[str] | None = None) -> pa.Table:
tbl = daft.table.Table.read_parquet(path, columns=columns, multithreaded_io=False)
tbl = daft.table.Table.read_parquet(path, columns=columns)
return tbl.to_arrow()


Expand Down

0 comments on commit 9066248

Please sign in to comment.