Skip to content

Commit

Permalink
0002185: Improved trigger performance on Sql Server
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Feb 9, 2015
1 parent 4d8edf7 commit 37cac7a
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -840,6 +840,9 @@ protected ColumnString fillOutColumnTemplate(String origTableAlias, String table

String formattedColumnText = FormatUtils.replace("columnName",
String.format("%s%s", columnPrefix, column.getName()), templateToUse);

formattedColumnText = FormatUtils.replace("columnSize",
column.getSize(), formattedColumnText);

formattedColumnText = FormatUtils.replace("masterCollation",
symmetricDialect.getMasterCollation(), formattedColumnText);
Expand Down

0 comments on commit 37cac7a

Please sign in to comment.