Skip to content

Commit

Permalink
fix set of available table names for db-prefixed tables
Browse files Browse the repository at this point in the history
  • Loading branch information
albertobastos committed Jan 21, 2025
1 parent 29a9929 commit 116c40a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@ public Table getTable(String name) {
*/
@Override
public Set<String> getTableNames() {
return _tableCache.getTableNameMap().keySet().stream().filter(n -> DatabaseUtils.isPartOfDatabase(n, _databaseName))
.collect(Collectors.toSet());
//return _tableCache.getTableNameMap().keySet().stream().filter(n -> DatabaseUtils.isPartOfDatabase(n, _databaseName))
// .collect(Collectors.toSet());
return _tableCache.getTableNameMap().keySet();
}

@Override
Expand Down

0 comments on commit 116c40a

Please sign in to comment.