Skip to content

Commit

Permalink
get rid of extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 8, 2012
1 parent 421a4d3 commit f282b30
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -137,7 +137,7 @@ public void dropTable(Table table, StringBuilder ddl) {
protected void createAutoIncrementSequence(Table table, Column column, StringBuilder ddl) {
ddl.append("CREATE SEQUENCE ");
printIdentifier(getConstraintName(PREFIX_SEQUENCE, table, column.getName(), null), ddl);
ddl.append(" CACHE 1000 ORDER ");
ddl.append(" CACHE 1000 ORDER");
printEndOfStatement(ddl);
}

Expand Down

0 comments on commit f282b30

Please sign in to comment.