Github user BJangir commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2897#discussion_r230736008
--- Diff:
store/sdk/src/main/java/org/apache/carbondata/sdk/file/CarbonWriterBuilder.java
---
@@ -64,7 +64,8 @@
private Map<String, String> options;
private String taskNo;
private int localDictionaryThreshold;
- private boolean isLocalDictionaryEnabled;
+ private boolean isLocalDictionaryEnabled = Boolean.parseBoolean(
--- End diff --
it is already handled in below method when isLocalDictionaryEnabled is true
org.apache.carbondata.core.metadata.schema.table.TableSchemaBuilder#build
---