clairemcginty commented on code in PR #3098:
URL: https://github.com/apache/parquet-java/pull/3098#discussion_r1920679469
##########
parquet-column/src/main/java/org/apache/parquet/filter2/predicate/Operators.java:
##########
@@ -505,6 +505,82 @@ public <R> R filter(
}
}
+ public static final class Size implements FilterPredicate, Serializable {
+ public enum Operator {
+ EQ,
+ LT,
+ LTE,
+ GT,
+ GTE
+ }
+
+ private final Column<?> column;
+ private final Operator operator;
+ private final long value;
Review Comment:
yes good point! updated
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]