Github user qiuchenjian commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/3052#discussion_r245505699
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/sql/catalyst/CarbonDDLSqlParser.scala
---
@@ -697,9 +697,9 @@ abstract class CarbonDDLSqlParser extends
AbstractCarbonSparkSQLParser {
tableProperties(CarbonCommonConstants.INVERTED_INDEX).split(',').map(_.trim)
invertedIdxColsProps.foreach { invertedIdxColProp =>
if (!fields.exists(x =>
x.column.equalsIgnoreCase(invertedIdxColProp))) {
- val errormsg = "INVERTED_INDEX column: " + invertedIdxColProp +
+ val errorMsg = "INVERTED_INDEX column: " + invertedIdxColProp +
" does not exist in table. Please check create
table statement."
--- End diff --
```suggestion
" does not exist in table. Please check the create
table statement."
```
---