hms-lambda-handler/src/main/java/com/amazonaws/athena/hms/handler/ListTablesHandler.java [61:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Set<String> getTableNames(String dbName, String filter) throws TException
    {
      if (filter == null || filter.isEmpty()) {
        return new HashSet<>(client.getAllTables(dbName));
      }
      return client.getAllTables(dbName)
              .stream()
              .filter(n -> n.matches(filter))
              .collect(Collectors.toSet());
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hms-lambda-handler/src/main/java/com/amazonaws/athena/hms/handler/GetTableNamesHandler.java [39:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public Set<String> getTableNames(String dbName, String filter, HiveMetaStoreClient client) throws TException
  {
    if (filter == null || filter.isEmpty()) {
      return new HashSet<>(client.getAllTables(dbName));
    }
    return client.getAllTables(dbName)
            .stream()
            .filter(n -> n.matches(filter))
            .collect(Collectors.toSet());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



