Github user qiuchenjian commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/3052#discussion_r245505788
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/sql/catalyst/CarbonDDLSqlParser.scala
---
@@ -837,9 +837,9 @@ abstract class CarbonDDLSqlParser extends
AbstractCarbonSparkSQLParser {
// include cols should not contain exclude cols
dictExcludeCols.foreach { dicExcludeCol =>
if (dictIncludeCols.exists(x => x.equalsIgnoreCase(dicExcludeCol))) {
- val errormsg = "DICTIONARY_EXCLUDE can not contain the same
column: " + dicExcludeCol +
+ val errorMsg = "DICTIONARY_EXCLUDE can not contain the same
column: " + dicExcludeCol +
" with DICTIONARY_INCLUDE. Please check create
table statement."
--- End diff --
```suggestion
" with DICTIONARY_INCLUDE. Please check the create
table statement."
```
---