Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1835#discussion_r162550904
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/datamap/CarbonDropDataMapCommand.scala
---
@@ -104,12 +99,12 @@ case class CarbonDropDataMapCommand(
tableName))(sparkSession)
if (dataMapSchema.isDefined) {
if (dataMapSchema.get._1.getRelationIdentifier != null) {
- CarbonDropTableCommand(
+ commandToRun = CarbonDropTableCommand(
--- End diff --
same code is already handled in pr 1821
---