Skip to content

Commit

Permalink
fix interbase autocommit on ddl
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed May 24, 2011
1 parent 5b6df7a commit e56e87e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -246,7 +246,7 @@ protected static void dropAndCreateDatabaseTables(String databaseType, ISymmetri
platform.dropTables(previousSymmetricVersionTables, true);
dialect.purge();

boolean autocommitDdl = databaseType.equals("postgres") ? true : false;
boolean autocommitDdl = databaseType.equals("postgres") || databaseType.equals("interbase") ? true : false;

new SqlScript(getResource(TestConstants.TEST_DROP_ALL_SCRIPT), ds, false).execute(autocommitDdl);

Expand Down

0 comments on commit e56e87e

Please sign in to comment.