Github user kunal642 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2433#discussion_r199382572
--- Diff:
core/src/main/java/org/apache/carbondata/core/metadata/schema/table/TableSchemaBuilder.java
---
@@ -76,6 +78,18 @@ public TableSchemaBuilder blockletSize(int blockletSize)
{
return this;
}
+ public TableSchemaBuilder localDictionaryThreshold(int
localDictionaryThreshold) {
+ this.localDictionaryThreshold =
String.valueOf(localDictionaryThreshold);
+ return this;
+ }
+
+
+ public TableSchemaBuilder isLocalDictionaryEnabled(boolean
isLocalDictionaryEnabled) {
--- End diff --
change the method name to enableLocalDictionary
---