diff --git a/py-polars/polars/io/parquet/functions.py b/py-polars/polars/io/parquet/functions.py index 8c0acd413a9f..fcc94f8cc31a 100644 --- a/py-polars/polars/io/parquet/functions.py +++ b/py-polars/polars/io/parquet/functions.py @@ -188,7 +188,7 @@ def read_parquet( columns = [lf.columns[i] for i in columns] lf = lf.select(columns) - return lf.collect(no_optimization=True) + return lf.collect() def read_parquet_schema(source: str | Path | IO[bytes] | bytes) -> dict[str, DataType]: