mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
Bug #34647 rpl_temporary discovers more than one dump thread and fails to select
Many dump threads can exist due to a way the new version of mtr governs suites. For this immediate problem the test is refined not to use I_S but rather to reconnect explicitly with preserving logics of a an old target bug fixes verification.
This commit is contained in:
@@ -76,9 +76,9 @@ drop table t1,t2;
|
||||
create temporary table t3 (f int);
|
||||
create temporary table t4 (f int);
|
||||
create table t5 (f int);
|
||||
select id from information_schema.processlist where command='Binlog Dump' into @id;
|
||||
kill @id;
|
||||
stop slave;
|
||||
insert into t5 select * from t4;
|
||||
start slave;
|
||||
select * from t5 /* must be 1 after reconnection */;
|
||||
f
|
||||
drop temporary table t4;
|
||||
|
Reference in New Issue
Block a user