mirror of
https://github.com/MariaDB/server.git
synced 2025-08-26 01:44:06 +03:00
Bug#38540 rpl_server_id2 uses show slave status unnecessarily Slave did not perform any event recorded into the relay log from some different master when it was started with --replicate-same-server-id. The reason appeared to be a consequence of BUG#38734 which stopped the sql thread at its startup time. The real fixes for the current bug are in the patch for BUG#38734. This changeset carries only a regression test for the bugs. Bug#38540 gets fixed too by means of eliminating an extra show slave status.
31 lines
667 B
Plaintext
31 lines
667 B
Plaintext
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;
|
|
create table t1 (n int);
|
|
reset master;
|
|
stop slave;
|
|
change master to master_port=SLAVE_PORT;
|
|
start slave;
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
n
|
|
1
|
|
1
|
|
stop slave;
|
|
drop table t1;
|
|
reset master;
|
|
create table t1(n int);
|
|
create table t2(n int);
|
|
change master to master_port=MASTER_PORT;
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=107;
|
|
*** checking until postion execution: must be only t1 in the list ***
|
|
show tables;
|
|
Tables_in_test
|
|
t1
|
|
start slave sql_thread;
|
|
drop table t1;
|
|
drop table t2;
|