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

@@ -9,7 +9,7 @@ create table table_7(
b int not null,
c int not null,
primary key(a, b)
) type=innodb;
) engine=innodb;
drop table if exists table_8;
create table table_8 like table_7;
@@ -19,7 +19,7 @@ create table table_9(
a int not null primary key,
b int not null,
c int not null
) type=innodb;
) engine=innodb;
insert into table_7(a, b, c) values
(1, 2, 1),