From f237b713fd01a650aa364c728f1a9b4cec74e4a7 Mon Sep 17 00:00:00 2001 From: Dmytro Melanchenko Date: Tue, 20 Sep 2011 11:33:13 +0200 Subject: [PATCH] Change dialect to MySQL5InnoDBDialect in order to fix issues with MySQL 5.5 With MySQLInnoDBDialect it inserts type=InnoDB to CREATE TABLE instructions. Correct statement in this case is engine=InnoDB but it comes to SQL DDL only when dialect is MySQL5InnoDBDialect. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0483c7646..8905080b9 100644 --- a/pom.xml +++ b/pom.xml @@ -134,7 +134,7 @@ jdbc:mysql://localhost/naval${navalplanner.mode} ${dataSource.url}test - org.hibernate.dialect.MySQLInnoDBDialect + org.hibernate.dialect.MySQL5InnoDBDialect