qiuchenjian commented on a change in pull request #3106: [CARBONDATA-3276] Compacting table that do not exist should throw NoSuchTableException instead of MalformedCarbonCommandException
URL:
https://github.com/apache/carbondata/pull/3106#discussion_r251657683
##########
File path: integration/spark2/src/main/scala/org/apache/spark/sql/execution/strategy/DDLStrategy.scala
##########
@@ -180,7 +182,8 @@ class DDLStrategy(sparkSession: SparkSession) extends SparkStrategy {
Nil
// TODO: remove this else check once the 2.1 version is unsupported by carbon
} else {
- throw new MalformedCarbonCommandException("Unsupported alter operation on hive table")
+ throw new MalformedCarbonCommandException(
+ "Unsupported alter add column operation on version 2.1")
Review comment:
hive table on spark version 2.1 are unsupported,
i will revert this log
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services