xubo245 commented on code in PR #4376:
URL: https://github.com/apache/carbondata/pull/4376#discussion_r2452307121
##########
core/src/main/java/org/apache/carbondata/core/scan/filter/executer/RangeValueFilterExecutorImpl.java:
##########
@@ -732,4 +734,33 @@ public void readColumnChunks(RawBlockletColumnChunks
rawBlockletColumnChunks) th
}
}
}
+
+ public void setIsDimensionPresentInCurrentBlock(boolean
isDimensionPresentInCurrentBlock) {
+ this.isDimensionPresentInCurrentBlock = isDimensionPresentInCurrentBlock;
+ }
+
+ public void setLessThanExp(boolean lessThanExp) {
+ this.lessThanExp = lessThanExp;
+ }
+
+ public void setGreaterThanExp(boolean greaterThanExp) {
+ this.greaterThanExp = greaterThanExp;
+ }
+
+ public void setDimColEvaluatorInfo(
+ DimColumnResolvedFilterInfo dimColEvaluatorInfo) {
+ this.dimColEvaluatorInfo = dimColEvaluatorInfo;
+ }
+
+ public boolean isEndBlockMaxisDefaultEnd() {
+ return endBlockMaxisDefaultEnd;
+ }
+
+ public boolean isStartBlockMinIsDefaultStart() {
+ return startBlockMinIsDefaultStart;
+ }
+
+ public boolean isRangeFullyCoverBlock() {
Review Comment:
please add some description for public method
--
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]