deniskuzZ commented on code in PR #5814: URL: https://github.com/apache/hive/pull/5814#discussion_r2135604809
########## standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/HiveAlterHandler.java: ########## @@ -409,23 +409,41 @@ public List<Void> run(List<Partition> input) throws Exception { if (runPartitionMetadataUpdate) { if (cascade || retainOnColRemoval) { parts = msdb.getPartitions(catName, dbname, name, -1); - for (Partition part : parts) { - Partition oldPart = new Partition(part); - List<FieldSchema> oldCols = part.getSd().getCols(); - part.getSd().setCols(newt.getSd().getCols()); - List<ColumnStatistics> colStats = updateOrGetPartitionColumnStats(msdb, catName, dbname, name, - part.getValues(), oldCols, oldt, part, null, null); - assert (colStats.isEmpty()); - Deadline.checkTimeout(); - if (cascade) { - msdb.alterPartition( - catName, dbname, name, part.getValues(), part, writeIdList); - } else { + String catalogName = catName; Review Comment: @vikramahuja1001, why do we need new local vars? otherwise looks good to me -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org