saihemanth-cloudera commented on code in PR #5578: URL: https://github.com/apache/hive/pull/5578#discussion_r1955359779
########## standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java: ########## @@ -3645,30 +3645,18 @@ public Map<String, List<ColumnStatisticsObj>> getPartitionColumnStatistics( } @Override - public boolean deletePartitionColumnStatistics(String dbName, String tableName, String partName, - String colName, String engine) throws TException { - return deletePartitionColumnStatistics(getDefaultCatalog(conf), dbName, tableName, partName, - colName, engine); - } - - @Override - public boolean deletePartitionColumnStatistics(String catName, String dbName, String tableName, - String partName, String colName, String engine) throws TException { - return client.delete_partition_column_statistics(prependCatalogToDbName(catName, dbName, conf), - tableName, partName, colName, engine); - } - - @Override - public boolean deleteTableColumnStatistics(String dbName, String tableName, String colName, String engine) - throws TException { - return deleteTableColumnStatistics(getDefaultCatalog(conf), dbName, tableName, colName, engine); - } - - @Override - public boolean deleteTableColumnStatistics(String catName, String dbName, String tableName, Review Comment: https://github.com/apache/impala/blob/master/fe/src/compat-hive-3/java/org/apache/impala/compat/MetastoreShim.java#L195-L201 Impala references this API through the shim layer. Now that we have removed this implementation, we'll have to move to the newer API when this build gets included in the Impala. cc @VenuReddy2103 -- 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