pvary commented on a change in pull request #2772:
URL: https://github.com/apache/hive/pull/2772#discussion_r773102565
##########
File path: ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java
##########
@@ -1403,8 +1426,14 @@ public void dropTable(String dbName, String tableName,
boolean deleteData,
}
}
-
-
+ public void dropTable(org.apache.hadoop.hive.metastore.api.Table table,
+ boolean deleteData, boolean ignoreUnknownTab, boolean ifPurge) throws
HiveException {
+ try {
+ getMSC().dropTable(table, deleteData, ignoreUnknownTab, ifPurge);
+ } catch (Exception e) {
+ throw new HiveException(e);
+ }
+ }
Review comment:
nit: newline
--
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]