saihemanth-cloudera commented on code in PR #5275: URL: https://github.com/apache/hive/pull/5275#discussion_r1722262403
########## standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java: ########## @@ -3008,6 +3007,15 @@ Function getFunction(String catName, String dbName, String funcName) List<String> getFunctions(String dbName, String pattern) throws MetaException, TException; + /** + * Get all functions matching a pattern + * @param dbName database name. + * @param pattern to match. This is a java regex pattern. + * @throws MetaException error accessing the RDBMS + * @throws TException thrift transport error + */ + List<Function> getFunctionsInDb(String dbName, String pattern) Review Comment: Ack ########## standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift: ########## @@ -3028,6 +3040,8 @@ PartitionsResponse get_partitions_req(1:PartitionsRequest req) list<string> get_functions(1:string dbName, 2:string pattern) throws (1:MetaException o1) + GetFunctionsResponse get_functions_in_db(1:GetFunctionsRequest request) Review Comment: ack -- 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