Remove 'type=innodb' syntax (illegal in MySQL 5.5)

This commit is contained in:
Baron Schwartz
2012-06-03 16:25:28 -04:00
parent bfd2222a54
commit bac93e1201
4 changed files with 10 additions and 10 deletions

View File

@@ -15,7 +15,7 @@ CREATE TABLE `table_5` (
h decimal(9,5) not null,
i datetime not null,
PRIMARY KEY (a,b,c,d)
) type=InnoDB;
) engine=InnoDB;
CREATE TABLE `table_5_dest` (
a date not null,
b int not null,
@@ -27,7 +27,7 @@ CREATE TABLE `table_5_dest` (
h decimal(9,5) not null,
i datetime not null,
PRIMARY KEY (a,b,c,d)
) type=InnoDB;
) engine=InnoDB;
CREATE TABLE `table_5_copy` (
a date not null,
b int not null,
@@ -39,7 +39,7 @@ CREATE TABLE `table_5_copy` (
h decimal(9,5) not null,
i datetime not null,
PRIMARY KEY (a,b,c,d)
) type=InnoDB;
) engine=InnoDB;
INSERT INTO `table_5` VALUES (current_date - interval 2 day,581,'m','ga',1,16,0,'0.00402','2007-03-10 18:00:33')