mohitbadve commented on code in PR #5553:
URL: https://github.com/apache/hive/pull/5553#discussion_r1878043541


##########
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:
   Extremely sorry for the late reply, thanks for your patience. I checked and 
figured out that there is no issue in at least the `java` code related to 
`cascade`. As you pointed out, it is highly possible that the non-determinism 
can be because of the `C` scripts related to `cascade`. I am still checking on 
that. 



-- 
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

Reply via email to