Skip to content

Commit

Permalink
0002000: SymmetricDS startup fails. Check for existence of sym tables…
Browse files Browse the repository at this point in the history
… isn't limited to the default catalog and schema at start up
  • Loading branch information
chenson42 committed Oct 3, 2014
1 parent 2139b28 commit f290698
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -297,7 +297,7 @@ public void resetCachedTableModel() {
}

public Table getTableFromCache(String tableName, boolean forceReread) {
return getTableFromCache(null, null, tableName, forceReread);
return getTableFromCache(getDefaultCatalog(), getDefaultSchema(), tableName, forceReread);
}

public Table getTableFromCache(String catalogName, String schemaName, String tableName,
Expand Down

0 comments on commit f290698

Please sign in to comment.