Github user mohammadshahidkhan commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1583#discussion_r154276544
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/strategy/DDLStrategy.scala
---
@@ -193,6 +197,32 @@ class DDLStrategy(sparkSession: SparkSession) extends
SparkStrategy {
ExecutedCommandExec(
CarbonAlterTableUnsetCommand(tableName, propKeys, ifExists,
isView)) :: Nil
}
+ case RefreshTable(tableIdentifier) =>
+ val isCarbonTable =
CarbonEnv.getInstance(sparkSession).carbonMetastore
--- End diff --
Fixed
---