Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2605#discussion_r208117498
--- Diff:
core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java
---
@@ -931,6 +931,11 @@
*/
public static final String LOCAL_DICTIONARY_ENABLE_DEFAULT = "false";
+ /**
+ * System property to enable or disable local dictionary generation
+ */
+ public static final String LOCAL_DICTIONARY_SYSTEM_ENABLE =
"carbon.local.dictionary.enable";
--- End diff --
this is done, beacuse if we have many tables to be created and all need to
be local dictionary enable, then no need to give table level property for every
table, can configure the system level property
---