jfsii commented on code in PR #4258:
URL: https://github.com/apache/hive/pull/4258#discussion_r1176886829


##########
standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreFilterHook.java:
##########
@@ -85,15 +85,13 @@ default List<String> filterCatalogs(List<String> catalogs) 
throws MetaException
   List<String> filterTableNames(String catName, String dbName, List<String> 
tableList)
       throws MetaException;
 
-  // Previously this was handled by filterTableNames.  But it can't be anymore 
because we can no
-  // longer depend on a 1-1 mapping between table name and entry in the list.
   /**
    * Filter a list of TableMeta objects.
    * @param tableMetas list of TableMetas to filter
    * @return filtered table metas
    * @throws MetaException something went wrong
    */
-  List<TableMeta> filterTableMetas(String catName,String 
dbName,List<TableMeta> tableMetas) throws MetaException;
+  List<TableMeta> filterTableMetas(List<TableMeta> tableMetas) throws 
MetaException;

Review Comment:
   I've made this change - I hope it matches the intent of your comment.



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