Skip to content

Commit

Permalink
0001776: Postgres should auto commit ddl changes. Otherwise, if a ddl…
Browse files Browse the repository at this point in the history
… fails to run it cannot continue to move forward.
  • Loading branch information
chenson42 committed Jun 25, 2014
1 parent d7d3d87 commit ebfc082
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -54,6 +54,7 @@ public PostgreSqlDdlBuilder() {
databaseInfo.setMaxIdentifierLength(63);

databaseInfo.setRequiresSavePointsInTransaction(true);
databaseInfo.setRequiresAutoCommitForDdl(true);

databaseInfo.addNativeTypeMapping(Types.ARRAY, "BYTEA", Types.LONGVARBINARY);
databaseInfo.addNativeTypeMapping(Types.BINARY, "BYTEA", Types.LONGVARBINARY);
Expand Down

0 comments on commit ebfc082

Please sign in to comment.