Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2401#discussion_r198387868
--- Diff:
core/src/main/java/org/apache/carbondata/core/metadata/schema/table/CarbonTable.java
---
@@ -1110,9 +1110,18 @@ private static void setLocalDictInfo(CarbonTable
table, TableInfo tableInfo) {
String localDictionaryThreshold =
tableInfo.getFactTable().getTableProperties()
.get(CarbonCommonConstants.LOCAL_DICTIONARY_THRESHOLD);
if (null != isLocalDictionaryEnabled) {
-
table.setLocalDictionaryEnabled(Boolean.parseBoolean(isLocalDictionaryEnabled));
+ // if table is altered then, for same key in table properties,
multiple values will be
--- End diff --
remove this code if unused
---