Navigation Menu

Skip to content

Commit

Permalink
0003306: MSSQL Server will not retrieve schemas correctly for a
Browse files Browse the repository at this point in the history
different database/catalog
  • Loading branch information
jumpmind-josh committed Nov 9, 2017
1 parent 776559f commit c7063fb
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -333,7 +333,7 @@ public Trigger mapRow(Row row) {
}, tableName, schema);
}

protected IConnectionHandler getConnectionHandler() {
return new ChangeCatalogConnectionHandler(platform.getDefaultCatalog());
protected IConnectionHandler getConnectionHandler(String catalog) {
return new ChangeCatalogConnectionHandler(catalog == null ? platform.getDefaultCatalog() : catalog);
}
}

0 comments on commit c7063fb

Please sign in to comment.