Github user 397090770 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1434#discussion_r147604867
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/partition/AlterTableSplitCarbonPartitionCommand.scala
---
@@ -109,7 +109,7 @@ case class AlterTableSplitCarbonPartitionCommand(
CarbonUtil.writeThriftTableToSchemaFile(schemaFilePath, thriftTable)
// update the schema modified time
carbonMetaStore.updateAndTouchSchemasUpdatedTime(storePath)
- sparkSession.catalog.refreshTable(tableName)
+ sparkSession.catalog.refreshTable(s"$dbName.$tableName")
--- End diff --
@sounakr Thank you for your review. I will fix this.
---