Skip to content

Commit

Permalink
Update parquet-hadoop/src/main/java/org/apache/parquet/filter2/statis…
Browse files Browse the repository at this point in the history
…ticslevel/StatisticsFilter.java

Co-authored-by: Gang Wu <[email protected]>
  • Loading branch information
clairemcginty and wgtmac authored Jul 10, 2024
1 parent 7b8a4c8 commit 3974c69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public <T extends Comparable<T>> Boolean visit(NotIn<T> notIn) {

@Override
public <T extends Comparable<T>> Boolean visit(Contains<T> contains) {
return contains.filter(this, (l, r) -> l || r, (l, r) -> l && r, b -> BLOCK_MIGHT_MATCH);
return contains.filter(this, (l, r) -> l || r, (l, r) -> l && r, v -> BLOCK_MIGHT_MATCH);
}

@Override
Expand Down

0 comments on commit 3974c69

Please sign in to comment.