mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
3ac3252a65
This is because rpl_relayrotate.test uses InnoDB. Example of a failing sequence: rpl_relayrotate.test repl_user_variables.test rpl_relayrotate.test Explaination in the files. Btw all other tests which use InnoDB (innodb*.test) already have this final DROP TABLE. Removed a wrong comment of mine.
19 lines
405 B
Text
19 lines
405 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
stop slave;
|
|
create table t1 (a int) type=innodb;
|
|
reset slave;
|
|
start slave;
|
|
stop slave;
|
|
start slave;
|
|
select master_pos_wait('master-bin.001',3000,120)=-1;
|
|
master_pos_wait('master-bin.001',3000,120)=-1
|
|
0
|
|
select * from t1 where a=8000;
|
|
a
|
|
8000
|
|
drop table t1;
|