Skip to content

Commit

Permalink
0001707: Trigger for all tables * is not creating triggers for some o…
Browse files Browse the repository at this point in the history
…f the tables
  • Loading branch information
chenson42 committed May 2, 2014
1 parent de8e436 commit 6b0d126
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -1238,7 +1238,8 @@ private boolean containsExactMatchForSourceTableName(Table table, List<Trigger>
(sourceSchemaName == null || sourceSchemaName.equals(table.getSchema()))) {
return true;
} else if (ignoreCase && trigger.getSourceTableName().equalsIgnoreCase(table.getName())
&& sourceCatalogName.equalsIgnoreCase(table.getCatalog()) && sourceSchemaName.equalsIgnoreCase(table.getSchema())) {
&& (sourceCatalogName == null || sourceCatalogName.equalsIgnoreCase(table.getCatalog()))
&& (sourceSchemaName == null || sourceSchemaName.equalsIgnoreCase(table.getSchema()))) {
return true;
}
}
Expand Down

0 comments on commit 6b0d126

Please sign in to comment.