Skip to content

Commit

Permalink
0001150: Allow wild card load filters to work on tables sharing the s…
Browse files Browse the repository at this point in the history
…ame prefix as the symmetric tables.
  • Loading branch information
abrougher committed Mar 29, 2013
1 parent de79485 commit f637bec
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -215,7 +215,7 @@ protected boolean processLoadFilters(DataContext context, Table table, CsvData d
LoadFilter currentFilter = null;

List<LoadFilter> wildcardLoadFilters = null;
if (!table.getName().toLowerCase().startsWith(symmetricEngine.getTablePrefix())) {
if (!table.getName().toLowerCase().startsWith(symmetricEngine.getTablePrefix() + "_")) {
wildcardLoadFilters = loadFilters.get(Table.getFullyQualifiedTableName(table.getCatalog(), table.getSchema(), FormatUtils.WILDCARD));
}
List<LoadFilter> tableSpecificLoadFilters = loadFilters.get(table.getFullyQualifiedTableName());
Expand Down

0 comments on commit f637bec

Please sign in to comment.