Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1617#discussion_r155507173
--- Diff:
core/src/main/java/org/apache/carbondata/core/cache/dictionary/DictionaryColumnUniqueIdentifier.java
---
@@ -79,21 +82,26 @@ public
DictionaryColumnUniqueIdentifier(AbsoluteTableIdentifier absoluteTableIde
this.dataType = dataType;
if (null != carbonTablePath) {
this.carbonTablePath = carbonTablePath;
+ } else {
+ this.carbonTablePath =
CarbonStorePath.getCarbonTablePath(absoluteTableIdentifier);
--- End diff --
dictionaryLocation needs to be initialized here also
---