mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-24 13:25:01 +00:00
Remove 'type=innodb' syntax (illegal in MySQL 5.5)
This commit is contained in:
@@ -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),
|
||||
|
Reference in New Issue
Block a user