Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1743#discussion_r159402613
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/hive/CarbonHiveMetaStore.scala
---
@@ -194,6 +194,11 @@ class CarbonHiveMetaStore extends CarbonFileMetastore {
newTablePath)
val dbName = oldTableIdentifier.getDatabaseName
val tableName = oldTableIdentifier.getTableName
+ val schemaParts =
CarbonUtil.convertToMultiGsonStrings(wrapperTableInfo, "=", "'", "")
--- End diff --
Not required this function use above function , updateHiveMetaStoreForAlter
---