pvary commented on code in PR #3220:
URL: https://github.com/apache/hive/pull/3220#discussion_r857349784


##########
ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java:
##########
@@ -661,16 +662,36 @@ public void dropDatabase(String name, boolean deleteData, 
boolean ignoreUnknownD
    */
   public void dropDatabase(String name, boolean deleteData, boolean 
ignoreUnknownDb, boolean cascade)
       throws HiveException, NoSuchObjectException {
+    dropDatabase(
+      new DropDatabaseDesc(name, ignoreUnknownDb, cascade, deleteData));
+  }
+
+  public void dropDatabase(DropDatabaseDesc desc) 

Review Comment:
   Nit: I would guess that we do not need the new line here



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to