okumin commented on code in PR #5553: URL: https://github.com/apache/hive/pull/5553#discussion_r1853735022
########## standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/TestPartitionManagement.java: ########## @@ -91,13 +91,19 @@ public void tearDown() throws Exception { // First drop any databases in catalog List<String> databases = client.getAllDatabases(catName); for (String db : databases) { + for (String table : client.getAllTables(catName, db)) { + client.dropTable(catName, db, table, true, true); + } client.dropDatabase(catName, db, true, false, true); Review Comment: Is it possible that the `cascade` option is not implemented as expected? https://github.com/apache/hive/blob/rel/release-4.0.1/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java#L1844-L1845 -- 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