Github user qiuchenjian commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/3052#discussion_r245505760
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/sql/catalyst/CarbonDDLSqlParser.scala
---
@@ -796,10 +796,10 @@ abstract class CarbonDDLSqlParser extends
AbstractCarbonSparkSQLParser {
dictExcludeCols
.foreach { dictExcludeCol =>
if (!fields.exists(x =>
x.column.equalsIgnoreCase(dictExcludeCol))) {
- val errormsg = "DICTIONARY_EXCLUDE column: " + dictExcludeCol +
+ val errorMsg = "DICTIONARY_EXCLUDE column: " + dictExcludeCol +
" does not exist in table or unsupported for
complex child column. " +
"Please check create table statement."
--- End diff --
```suggestion
"Please check the create table statement."
```
---