pvary commented on a change in pull request #1341: URL: https://github.com/apache/hive/pull/1341#discussion_r464851008
########## File path: standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreDirectSql.java ########## @@ -2960,4 +2976,21 @@ public void lockDbTable(String tableName) throws MetaException { throw new MetaException("Error while locking table " + tableName + ": " + sqle.getMessage()); } } + + public void deleteColumnStatsState(long tbl_id) throws MetaException { + // @formatter:off + String queryText = "" + + "delete from " + PARTITION_PARAMS + " " + + " where " + + " \"PART_ID\" in (select p.\"PART_ID\" from "+PARTITIONS+" p where" Review comment: nit: spaces ---------------------------------------------------------------- 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. 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