Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Later
-
1.3.5
-
None
-
None
-
mysql 5.5.20, ubuntu 12.04
Description
ode-135-hib-mysql.sql and mysql.sql cause errors on the newest versions of MySQL. The reason is that the scripts use syntax like
TYPE=InnoDB;
TYPE was replaced by ENGINE in MySQL and since MySQL 5.5 the old syntax is no longer supported.
Please use
ENGINE=InnoDB;
instead.
See OPENJPA-1530 for more details.