Skip to content

Commit

Permalink
0003286: dbcompare improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichalek committed Oct 31, 2017
1 parent 3f28e4e commit 9242c04
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -73,6 +73,9 @@ public String getTargetWhereClause(String tableName) {
String simpleTableName = DbCompareUtil.getUnqualifiedTableName(tableName);
whereClause = getWhereClause(simpleTableName, "target");
}
if (StringUtils.isEmpty(whereClause)) {
whereClause = "1=1";
}
return whereClause;
}

Expand Down

0 comments on commit 9242c04

Please sign in to comment.