1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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.

mysql-test/suite/rpl/r/rpl_temporary.result:
  results changed
mysql-test/suite/rpl/t/rpl_temporary.test:
  refining the bug#17284 test to avoid counting dump threads in favor to reconnect
  explicitly with preserving the orig logics.
This commit is contained in:
Andrei Elkin
2008-07-18 11:20:55 +03:00
parent 53b49c6c1c
commit f8e8332100
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;