Navigation Menu

Skip to content

Commit

Permalink
0002333: Audit router inserts failing due to case sensitive collation
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Jun 26, 2015
1 parent 9c64368 commit bd07a8c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -97,7 +97,7 @@ public Set<String> routeToNodes(SimpleRouterContext context, DataMetaData dataMe
Long sequence = (Long) context.get(auditTableName);
if (sequence == null) {
sequence = 1l + template.queryForLong(String.format("select max(%s) from %s",
COLUMN_AUDIT_ID, auditTableName));
table.getColumnWithName(COLUMN_AUDIT_ID).getName(), auditTableName));
} else {
sequence = 1l + sequence;
}
Expand Down

0 comments on commit bd07a8c

Please sign in to comment.