diff --git a/polars/query.py b/polars/query.py index 75eb3d8c6..9afbb5fa2 100755 --- a/polars/query.py +++ b/polars/query.py @@ -22,7 +22,7 @@ hits[col] = hits[col].astype(str) start = timeit.default_timer() -pl_df = pl.DataFrame(hits).rechunk() +pl_df = pl.DataFrame(hits).rechunk().lazy() stop = timeit.default_timer() load_time = stop - start