Github user chenerlu commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1437#discussion_r147437929
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/sql/catalyst/CarbonDDLSqlParser.scala
---
@@ -247,7 +247,8 @@ abstract class CarbonDDLSqlParser extends
AbstractCarbonSparkSQLParser {
, tableName: String, fields: Seq[Field],
partitionCols: Seq[PartitionerField],
tableProperties: mutable.Map[String, String],
- bucketFields: Option[BucketFields], isAlterFlow: Boolean = false):
TableModel = {
+ bucketFields: Option[BucketFields], isAlterFlow: Boolean = false,
+ comment: Option[String] = None): TableModel = {
--- End diff --
Have renamed.
---