Github user sounakr commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1469#discussion_r153076491
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/strategy/DDLStrategy.scala
---
@@ -26,13 +26,19 @@ import
org.apache.spark.sql.execution.command.management.{AlterTableCompactionCo
import
org.apache.spark.sql.execution.command.partition.ShowCarbonPartitionsCommand
import
org.apache.spark.sql.execution.command.schema.{AlterTableAddColumnCommand,
AlterTableDataTypeChangeCommand, AlterTableDropColumnCommand,
AlterTableRenameTableCommand}
import
org.apache.spark.sql.hive.execution.command.{CarbonDropDatabaseCommand,
CarbonResetCommand, CarbonSetCommand}
+import org.apache.spark.sql.CarbonExpressions.{CarbonDescribeTable =>
DescribeTableCommand}
+import org.apache.spark.sql.catalyst.catalog.CatalogTypes
import org.apache.carbondata.core.util.CarbonUtil
import
org.apache.carbondata.spark.exception.MalformedCarbonCommandException
/**
* Carbon strategies for ddl commands
*/
+case class CarbonDescribeTableCommand (
--- End diff --
Done
---