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 7ca82fc commit 1fed3c0
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",
table.getColumnWithName(COLUMN_AUDIT_ID).getName(), auditTableName));
auditTable.getColumnWithName(COLUMN_AUDIT_ID).getName(), auditTableName));
} else {
sequence = 1l + sequence;
}
Expand Down

0 comments on commit 1fed3c0

Please sign in to comment.