diff options
Diffstat (limited to 'mysql-test/t/rpl000008.test')
-rw-r--r-- | mysql-test/t/rpl000008.test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mysql-test/t/rpl000008.test b/mysql-test/t/rpl000008.test index d17190ef31d..8cbc724c3a6 100644 --- a/mysql-test/t/rpl000008.test +++ b/mysql-test/t/rpl000008.test @@ -17,8 +17,13 @@ insert into bar values(15); drop table if exists choo; create table choo (k int); insert into choo values(55); +save_master_pos; connection slave; -sleep 3; +sync_with_master; @r/rpl000008.result select foo.n,bar.m,choo.k from foo,bar,choo; connection master; drop table if exists foo,bar,choo; +save_master_pos; +connection slave; +sync_with_master; +drop table if exists foo,bar,choo; |