Skip to content

Commit

Permalink
Merge branch '3.7' of https://github.com/JumpMind/symmetric-ds into 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 19, 2015
2 parents 6d25e88 + 80dcb8b commit 27b2fd6
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -22,6 +22,8 @@

import java.sql.Types;

import org.jumpmind.db.model.Column;
import org.jumpmind.db.model.Table;
import org.jumpmind.db.platform.AbstractDdlBuilder;
import org.jumpmind.db.platform.DatabaseNamesConstants;

Expand Down Expand Up @@ -52,7 +54,7 @@ public RedshiftDdlBuilder() {
databaseInfo.setBlankCharColumnSpacePadded(true);
databaseInfo.setCharColumnSpaceTrimmed(false);
databaseInfo.setEmptyStringNulled(false);

addEscapedCharSequence("\\", "\\\\");
addEscapedCharSequence("\b", "\\b");
addEscapedCharSequence("\f", "\\f");
Expand All @@ -61,4 +63,7 @@ public RedshiftDdlBuilder() {
addEscapedCharSequence("\t", "\\t");
}

protected void writeColumnAutoIncrementStmt(Table table, Column column, StringBuilder ddl) {
}

}

0 comments on commit 27b2fd6

Please sign in to comment.