Skip to content

Commit

Permalink
[To rc/1.1 ] Fix allSatisfy bug in InFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
JackieTien97 authored Aug 29, 2024
1 parent 9f92203 commit 1fd6029
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1035,6 +1035,11 @@ public final class ${className} {
return true;
}

// has null value, just return false
if (metadata.hasNullValue(measurementIndex)) {
return false;
}

// All values are same
if (statistics.isPresent()) {
Statistics<? extends Serializable> stat = statistics.get();
Expand Down

0 comments on commit 1fd6029

Please sign in to comment.