Github user QiangCai commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1317#discussion_r137916743
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/carbonTableSchema.scala
---
@@ -320,7 +322,143 @@ case class
AlterTableSplitPartitionCommand(splitPartitionModel: AlterTableSplitP
}
}
-case class CreateTable(cm: TableModel, createDSTable: Boolean = true)
extends RunnableCommand
+case class AlterTableDropPartition(alterTableDropPartitionModel:
AlterTableDropPartitionModel)
+ extends RunnableCommand with DataProcessCommand with
SchemaProcessCommand {
+ val LOGGER = LogServiceFactory.getLogService(this.getClass.getName)
--- End diff --
why to add so many attribute?
---