Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2375#discussion_r196305827
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/sql/execution/command/carbonTableSchemaCommon.scala
---
@@ -550,6 +550,11 @@ class TableNewProcessor(cm: TableModel) {
}
}
+ // check whether the column is a local dictionary column and set in
column schema
+ if (null != cm.tableProperties.asJava) {
--- End diff --
Don't need to convert to java for null check
---