Neer393 commented on code in PR #6046:
URL: https://github.com/apache/hive/pull/6046#discussion_r2307913584
##########
standalone-metastore/metastore-client/src/main/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java:
##########
@@ -131,6 +131,15 @@ void alterCatalog(String catalogName, Catalog newCatalog)
*/
List<String> getCatalogs() throws MetaException, TException;
Review Comment:
We can deprecate this but we can use it to fetch all catalogs without
providing a parameter for pattern. It's like in IMetaStoreClient where we have
2 methods for getDatabases
```
List<String> getDatabases(String databasePattern) throws MetaException,
TException;
```
```
List<String> getDatabases(String catName, String databasePattern)
throws MetaException, TException;
```
--
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]