Skip to content

Commit

Permalink
fix(rust): Fix hive partitioned files not being skipped (pola-rs#13358)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boruch Chalk committed Jan 4, 2024
1 parent 9d8e31c commit 8d9b701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-lazy/src/physical_plan/expressions/apply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ impl ApplyExpr {
if ChunkCompare::equal(max, min).ok()?.all() {
let one_equals =
|value: &Series| Some(ChunkCompare::equal(input, value).ok()?.any());
return Some(one_equals(min)?);
return one_equals(min);
}

let all_smaller = || Some(ChunkCompare::lt(input, min).ok()?.all());
Expand Down

0 comments on commit 8d9b701

Please sign in to comment.