Github user qiuchenjian commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/3052#discussion_r245505775
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/sql/catalyst/CarbonDDLSqlParser.scala
---
@@ -821,10 +821,10 @@ abstract class CarbonDDLSqlParser extends
AbstractCarbonSparkSQLParser {
tableProperties(CarbonCommonConstants.DICTIONARY_INCLUDE).split(",").map(_.trim)
dictIncludeCols.foreach { distIncludeCol =>
if (!fields.exists(x =>
x.column.equalsIgnoreCase(distIncludeCol.trim))) {
- val errormsg = "DICTIONARY_INCLUDE column: " +
distIncludeCol.trim +
+ val errorMsg = "DICTIONARY_INCLUDE column: " +
distIncludeCol.trim +
" 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."
```
---