Skip to content

Commit

Permalink
Merge branch 'mdev8294' into 10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
knielsen committed Jun 15, 2015
2 parents 4c251af + 93c039d commit f69f3db
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mysql-test/suite/rpl/t/rpl_000011.test
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ insert into t1 values(1);
sync_slave_with_master;
show global status like 'com_insert';
stop slave;
# Temporary work-around for bug MDEV-8301. There is a small window during
# thread exit where the local status values of a thread are counted twice
# in the global status. Remove this wait_condition.inc once MDEV-8301 is
# fixed.
--let $wait_condition= SELECT variable_value=1 FROM information_schema.global_status WHERE variable_name="Com_insert";
--source include/wait_condition.inc
show global status like 'com_insert';
--source include/wait_for_slave_to_stop.inc
start slave;
Expand Down

0 comments on commit f69f3db

Please sign in to comment.