Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1436#discussion_r147676934
--- Diff:
core/src/main/java/org/apache/carbondata/core/indexstore/BlockletDataMapIndexStore.java
---
@@ -84,15 +92,36 @@ public BlockletDataMapIndexStore(String
carbonStorePath, CarbonLRUCache lruCache
@Override public List<BlockletDataMap> getAll(
List<TableBlockIndexUniqueIdentifier> tableSegmentUniqueIdentifiers)
throws IOException {
List<BlockletDataMap> blockletDataMaps = new
ArrayList<>(tableSegmentUniqueIdentifiers.size());
+ List<TableBlockIndexUniqueIdentifier> missedIdentifiers = new
ArrayList<>();
try {
--- End diff --
Can you add some comment for this try block
---