Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2299#discussion_r187762940
--- Diff:
core/src/main/java/org/apache/carbondata/core/datamap/DataMapStoreManager.java
---
@@ -297,7 +297,7 @@ public TableDataMap registerDataMap(CarbonTable table,
dataMapSchema, dataMapFactory, blockletDetailsFetcher,
segmentPropertiesFetcher);
tableIndices.add(dataMap);
- allDataMaps.put(tableUniqueName, tableIndices);
+ allDataMaps.put(tableUniqueName.toLowerCase(), tableIndices);
--- End diff --
Is this a bug? It seems not related to this PR
---