1
0
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:
Andrei Elkin
2008-07-18 11:20:55 +03:00
parent e84b915985
commit 58cb8cbeb4
2 changed files with 7 additions and 6 deletions

View File

@@ -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;