Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1837#discussion_r162626990
--- Diff:
core/src/main/java/org/apache/carbondata/core/indexstore/BlockletDataMapIndexStore.java
---
@@ -136,7 +136,8 @@ public BlockletDataMap
get(TableBlockIndexUniqueIdentifier identifier)
partitionFileStore.readAllPartitionsOfSegment(carbonFiles,
segmentPath);
partitionFileStoreMap.put(identifier.getSegmentId(),
partitionFileStore);
for (CarbonFile file : carbonFiles) {
- locationMap.put(file.getAbsolutePath(), file.getLocations());
+ locationMap
+
.put(FileFactory.getUpdatedFilePath(file.getAbsolutePath()),
file.getLocations());
--- End diff --
move .put to previous line
---