Skip to content

Commit

Permalink
0003779: Load wizard cannot send specific tables for wildcarded tables
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 1, 2018
1 parent 5a0a85a commit 77ae523
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -298,6 +298,10 @@ public String getSourceTableName() {
return sourceTableName;
}

public boolean isSourceWildCarded() {
return isSourceTableNameWildCarded() || isSourceCatalogNameWildCarded() || isSourceSchemaNameWildCarded();
}

public boolean isSourceTableNameWildCarded() {
return sourceTableName != null && (sourceTableName.contains(FormatUtils.WILDCARD) || sourceTableName.contains(","));
}
Expand Down

0 comments on commit 77ae523

Please sign in to comment.