Skip to content

Commit

Permalink
0003717: Raima dialect rebuilds triggers with each restart
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpmind-josh committed Sep 11, 2018
1 parent aeb0b52 commit 213195e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -73,7 +73,7 @@ protected boolean doesTriggerExistOnPlatform(String catalog, String schema, Stri
.getSqlTemplate()
.queryForInt(
"select count(*) from sys_trigger where name = ? and tabname = ?"
+ checkSchemaSql, new Object[] { triggerName, tableName }) > 0;
+ checkSchemaSql, new Object[] { triggerName, tableName.toUpperCase() }) > 0;
}

@Override
Expand Down

0 comments on commit 213195e

Please sign in to comment.