Skip to content

Commit

Permalink
0003337: Informix fails to read existing triggers due to invalid sql
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpmind-josh committed Dec 12, 2017
1 parent 001e244 commit 527db90
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -150,11 +150,11 @@ public List<Trigger> getTriggers(final String catalog, final String schema,

String sql = "SELECT "
+ "trigname AS trigger_name, "
+ "owner AS schema_name, "
+ "tab.owner AS schema_name, "
+ "tab.tabname AS table_name, "
+ "event AS trigger_type"
+ "event AS trigger_type, "
+ "trigid, "
+ "tabid, "
+ "tab.tabid, "
+ "old, "
+ "new, "
+ "collation "
Expand Down

0 comments on commit 527db90

Please sign in to comment.