Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jul 22, 2024
1 parent 60012f6 commit 77b6c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-lazy/src/tests/predicate_queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fn filter_added_column_issue_2470() -> PolarsResult<()> {
fn filter_blocked_by_map() -> PolarsResult<()> {
let df = fruits_cars();

let allowed = OptState::PREDICATE_PUSHDOWN | OptState::default();
let allowed = OptState::default() & !OptState::PREDICATE_PUSHDOWN;
let q = df
.lazy()
.map(Ok, allowed, None, None)
Expand Down

0 comments on commit 77b6c05

Please sign in to comment.