mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#7011
Fix tests after merge from 4.0
This commit is contained in:
@ -1,17 +1,17 @@
|
|||||||
slave stop;
|
stop slave;
|
||||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
reset master;
|
reset master;
|
||||||
reset slave;
|
reset slave;
|
||||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
slave start;
|
start slave;
|
||||||
CREATE TABLE t1 (
|
CREATE TABLE t1 (
|
||||||
a int unsigned not null auto_increment primary key,
|
a int unsigned not null auto_increment primary key,
|
||||||
b int unsigned
|
b int unsigned
|
||||||
) TYPE=MyISAM;
|
) ENGINE=MyISAM;
|
||||||
CREATE TABLE t2 (
|
CREATE TABLE t2 (
|
||||||
a int unsigned not null auto_increment primary key,
|
a int unsigned not null auto_increment primary key,
|
||||||
b int unsigned
|
b int unsigned
|
||||||
) TYPE=MyISAM;
|
) ENGINE=MyISAM;
|
||||||
INSERT INTO t1 VALUES (NULL, 0);
|
INSERT INTO t1 VALUES (NULL, 0);
|
||||||
INSERT INTO t1 SELECT NULL, 0 FROM t1;
|
INSERT INTO t1 SELECT NULL, 0 FROM t1;
|
||||||
INSERT INTO t2 VALUES (NULL, 0), (NULL,1);
|
INSERT INTO t2 VALUES (NULL, 0), (NULL,1);
|
||||||
|
@ -7,12 +7,12 @@ source include/master-slave.inc;
|
|||||||
CREATE TABLE t1 (
|
CREATE TABLE t1 (
|
||||||
a int unsigned not null auto_increment primary key,
|
a int unsigned not null auto_increment primary key,
|
||||||
b int unsigned
|
b int unsigned
|
||||||
) TYPE=MyISAM;
|
) ENGINE=MyISAM;
|
||||||
|
|
||||||
CREATE TABLE t2 (
|
CREATE TABLE t2 (
|
||||||
a int unsigned not null auto_increment primary key,
|
a int unsigned not null auto_increment primary key,
|
||||||
b int unsigned
|
b int unsigned
|
||||||
) TYPE=MyISAM;
|
) ENGINE=MyISAM;
|
||||||
|
|
||||||
INSERT INTO t1 VALUES (NULL, 0);
|
INSERT INTO t1 VALUES (NULL, 0);
|
||||||
INSERT INTO t1 SELECT NULL, 0 FROM t1;
|
INSERT INTO t1 SELECT NULL, 0 FROM t1;
|
||||||
|
Reference in New Issue
Block a user