Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2402#discussion_r197813935
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/store/CarbonFactDataHandlerModel.java
---
@@ -623,5 +640,83 @@ public DataMapWriterListener
getDataMapWriterlistener() {
return dataMapWriterlistener;
}
+ public Map<String, LocalDictionaryGenerator> getColumnLocalDictGenMap() {
+ return columnLocalDictGenMap;
+ }
+
+ /**
+ * This method prepares a map which will have column and local
dictionary generator mapping for
+ * all the local dictionary columns.
+ * @param carbonTable
+ * @param wrapperColumnSchema
+ * @param carbonFactDataHandlerModel
+ */
+ public static void setLocalDictToModel(CarbonTable carbonTable,
--- End diff --
Keep as `private`
---