Github user BJangir commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2433#discussion_r200820897
--- 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 --
Done
---