Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/incubator-carbondata/pull/492#discussion_r94771952
--- Diff:
core/src/main/java/org/apache/carbondata/scan/scanner/impl/FilterScanner.java
---
@@ -151,7 +160,13 @@ private void fillScannedResult(BlocksChunkHolder
blocksChunkHolder)
for (int i = bitSet.nextSetBit(0); i >= 0; i = bitSet.nextSetBit(i +
1)) {
indexes[index++] = i;
}
-
+ // loading delete data cache in blockexecutioninfo instance
+ DeleteDeltaCacheLoaderIntf deleteCacheLoader =
--- End diff --
Scanner responsibility is to load to scan the data why it is loading delete
cache ? it should be loaded before scanning like block loading if any delete
delta cache exists
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---