Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2290#discussion_r187877018
--- Diff:
core/src/main/java/org/apache/carbondata/core/scan/scanner/impl/BlockletFilterScanner.java
---
@@ -169,6 +169,10 @@ private BlockletScannedResult
executeFilter(RawBlockletColumnChunks rawBlockletC
// apply filter on actual data, for each page
BitSetGroup bitSetGroup =
this.filterExecuter.applyFilter(rawBlockletColumnChunks,
useBitSetPipeLine);
+ // if bitSetGroup is nul, then new BitSetGroup object, which can avoid
NPE
--- End diff --
It will throw exception when use lucent with search mode. I didn't check
other scenario.
---