SteNicholas commented on code in PR #527:
URL: https://github.com/apache/flink-table-store/pull/527#discussion_r1104408398
##########
flink-table-store-format/src/main/java/org/apache/flink/table/store/format/orc/filter/OrcFilters.java:
##########
@@ -344,4 +344,27 @@ public String toString() {
return "OR(" + Arrays.toString(preds) + ")";
}
}
+
+ /** An AND predicate that can be evaluated by the OrcInputFormat. */
+ public static class And extends Predicate {
+ private final Predicate[] preds;
+
+ public And(Predicate... predicates) {
Review Comment:
Adds the java doc of the constructor which style follows the `OR`, `NOT` etc:
```
/**
* Creates an AND predicate.
*
* @param predicates The disjunctive predicates.
*/
```
--
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]