pvary commented on code in PR #6570: URL: https://github.com/apache/iceberg/pull/6570#discussion_r1095800121
########## hive-metastore/src/main/java/org/apache/iceberg/hive/MetastoreUtil.java: ########## @@ -53,9 +55,23 @@ private MetastoreUtil() {} */ public static void alterTable( IMetaStoreClient client, String databaseName, String tblName, Table table) { - EnvironmentContext envContext = - new EnvironmentContext( - ImmutableMap.of(StatsSetupConst.DO_NOT_UPDATE_STATS, StatsSetupConst.TRUE)); - ALTER_TABLE.invoke(client, databaseName, tblName, table, envContext); + alterTable(client, databaseName, tblName, table, ImmutableMap.of()); + } + + /** + * Calls alter_table method using the metastore client. If possible, an environmental context will Review Comment: Changed the comment. I hope it is better now -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org