Skip to content

Commit

Permalink
Search all namespace types
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Apr 19, 2024
1 parent 641bf73 commit c17b6a8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,8 @@ public RowIdLifetime getRowIdLifetime() throws SQLException {

@Override
public ResultSet getSchemas( String catalog, String schemaPattern ) throws SQLException {
List<Namespace> namespaces = prismInterfaceClient.searchNamespaces( schemaPattern, MetaUtils.NamespaceTypes.RELATIONAL.name(), getConnection().getNetworkTimeout() );
// TODO: Always search all namespace types?
List<Namespace> namespaces = prismInterfaceClient.searchNamespaces( schemaPattern, null, getConnection().getNetworkTimeout() );
return MetaResultSetBuilder.buildFromNamespaces( namespaces );
}

Expand Down

0 comments on commit c17b6a8

Please sign in to comment.