1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Disabled part of rpl_change_master that fails sporadically because of BUG#59037.

This commit is contained in:
Sven Sandberg
2010-12-19 18:16:01 +01:00
parent e37c86de18
commit fb5c33f5f6
2 changed files with 2 additions and 14 deletions

View File

@@ -15,18 +15,4 @@ n
1
2
drop table t1;
include/rpl_reset.inc
create table t1 (a int);
insert into t1 values (1);
flush logs;
insert into t1 values (2);
include/stop_slave.inc
delete from t1 where a=2;
CHANGE MASTER TO relay_log_file='slave-relay-bin.000005', relay_log_pos=4;
start slave sql_thread;
include/wait_for_slave_sql_to_start.inc
start slave io_thread;
include/wait_for_slave_io_to_start.inc
set global relay_log_purge=1;
drop table t1;
include/rpl_end.inc