Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Nov 21, 2024
1 parent b27fdef commit 8cb8d72
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions py-polars/tests/unit/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1981,6 +1981,9 @@ def test_prefilter_with_hive_19766(tmp_path: Path, parallel_strategy: str) -> No
pl.col("a") == 1,
pl.col("x") == 1,
(pl.col("a") == 1) & (pl.col("x") == 1),
pl.col("b") == 1,
pl.col("y") == 1,
(pl.col("a") == 1) & (pl.col("b") == 1),
]:
assert_frame_equal(
lf.filter(predicate).collect(),
Expand Down

0 comments on commit 8cb8d72

Please sign in to comment.