Skip to content

Commit

Permalink
0002042: Create of data_id trigger on sym_data fails on firebird if d…
Browse files Browse the repository at this point in the history
…b.delimited.identifier.mode=false
  • Loading branch information
chenson42 committed Oct 31, 2014
1 parent 51fff56 commit ecd9b23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -131,7 +131,7 @@ private void writeAutoIncrementCreateStmts(Table table, Column column, StringBui
printIdentifier(getTriggerName(table, column), ddl);
ddl.append(" FOR ");
ddl.append(getFullyQualifiedTableNameShorten(table));
println("ACTIVE BEFORE INSERT POSITION 0 AS", ddl);
println(" ACTIVE BEFORE INSERT POSITION 0 AS", ddl);
ddl.append("BEGIN IF (NEW.");
printIdentifier(getColumnName(column), ddl);
ddl.append(" IS NULL) THEN NEW.");
Expand Down
Expand Up @@ -155,7 +155,7 @@ private void writeAutoIncrementCreateStmts(Table table, Column column, StringBui
printIdentifier(getTriggerName(table, column), ddl);
ddl.append(" FOR ");
ddl.append(getFullyQualifiedTableNameShorten(table));
println("ACTIVE BEFORE INSERT POSITION 0 AS", ddl);
println(" ACTIVE BEFORE INSERT POSITION 0 AS", ddl);
ddl.append("BEGIN IF (NEW.");
printIdentifier(getColumnName(column), ddl);
ddl.append(" IS NULL) THEN NEW.");
Expand Down

0 comments on commit ecd9b23

Please sign in to comment.