Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2820#discussion_r226973701
--- Diff:
core/src/main/java/org/apache/carbondata/core/scan/filter/executer/RestructureEvaluatorImpl.java
---
@@ -104,6 +108,12 @@ protected boolean
isDimensionDefaultValuePresentInFilterValues(
return isDefaultValuePresentInFilterValues;
}
+ @Override
+ public BitSet prunePages(RawBlockletColumnChunks rawBlockletColumnChunks)
+ throws FilterUnsupportedException, IOException {
+ return new BitSet();
--- End diff --
I think for this operation we need to throw `FilterUnsupportedException`
similar to applyFilter implementation
---