dongjoon-hyun commented on a change in pull request #992:
URL: https://github.com/apache/orc/pull/992#discussion_r779352089
##########
File path: java/core/src/java/org/apache/orc/impl/RecordReaderImpl.java
##########
@@ -434,18 +434,33 @@ public long getNext() {
final boolean onlyLowerBound;
final boolean onlyUpperBound;
final boolean hasNulls;
+ final boolean hasValue;
+ final boolean comparable;
ValueRange(PredicateLeaf predicate,
T lower, T upper,
boolean hasNulls,
boolean onlyLowerBound,
- boolean onlyUpperBound) {
+ boolean onlyUpperBound,
+ boolean hasValue,
+ boolean comparable) {
PredicateLeaf.Type type = predicate.getType();
this.lower = getBaseObjectForComparison(type, lower);
this.upper = getBaseObjectForComparison(type, upper);
this.hasNulls = hasNulls;
this.onlyLowerBound = onlyLowerBound;
this.onlyUpperBound = onlyUpperBound;
+ this.hasValue = hasValue;
+ this.comparable = comparable;
+ }
+
+ ValueRange(PredicateLeaf predicate,
Review comment:
Thank you for adding this.
--
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]