Skip to content

Commit

Permalink
Merge branch '3.10' of https://github.com/JumpMind/symmetric-ds.git i…
Browse files Browse the repository at this point in the history
…nto 3.10
  • Loading branch information
erilong committed Jun 19, 2019
2 parents 6832351 + 45fe6c7 commit 74ae919
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Expand Up @@ -365,7 +365,11 @@ protected List<DbCompareTables> loadTables(List<String> tableNames, List <String
sourceTable = sourceEngine.getDatabasePlatform().getTableFromCache(tableName, true);
} else {
sourceTable = sourceEngine.getDatabasePlatform().
getTableFromCache(tableNameParts.get("catalog"), tableNameParts.get("schema"), tableNameParts.get("table"), true);
getTableFromCache(tableNameParts.get("catalog"), tableNameParts.get("schema"), tableNameParts.get("table"), true);
if (sourceTable == null) {
sourceTable = sourceEngine.getDatabasePlatform().
getTableFromCache(tableNameParts.get("schema"), tableNameParts.get("catalog"), tableNameParts.get("table"), true);
}
}

if (sourceTable == null) {
Expand Down
Expand Up @@ -50,6 +50,7 @@ public class DbCompareConfig {
private Map<String, String> configSources = new HashMap<String, String>();

public DbCompareConfig() {
configSources.put("sourceTableNames", "default");
configSources.put("includedTableNames", "default");
configSources.put("targetTableNames", "default");
configSources.put("excludedTableNames", "default");
Expand All @@ -58,6 +59,7 @@ public DbCompareConfig() {
configSources.put("whereClauses", "default");
configSources.put("tablesToExcludedColumns", "default");
configSources.put("sqlDiffFileName", "default");
configSources.put("outputSql", "default");
}

public String getSourceWhereClause(String tableName) {
Expand Down

0 comments on commit 74ae919

Please sign in to comment.