diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-01-22 12:35:16 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-01-22 12:35:16 -0700 |
commit | e4667fc51861263cdc46f59cb09d6def8edd6daf (patch) | |
tree | 74bae20e7b8358535b4be9c05ea784cacda8144e /mysql-test/t/rpl000008.test | |
parent | 682234e61ea4a083a3aaf4d3e19cc2609774c79e (diff) | |
download | mariadb-git-e4667fc51861263cdc46f59cb09d6def8edd6daf.tar.gz |
fixed bug in master_pos_wait(), got rid of sleep hack,
added test/sanity check for master_pos_wait()
mysql-test/r/rpl000016.result:
do show slave status to test master_pos_wait()
mysql-test/t/rpl000001.test:
no sleep
mysql-test/t/rpl000002.test:
no sleep
mysql-test/t/rpl000003.test:
no sleep
mysql-test/t/rpl000007.test:
!sleep
mysql-test/t/rpl000008.test:
!sleep
mysql-test/t/rpl000009.test:
no sleep
mysql-test/t/rpl000010.test:
no sleep
mysql-test/t/rpl000011.test:
no sleep
mysql-test/t/rpl000012.test:
no sleep
mysql-test/t/rpl000013.test:
no sleep
mysql-test/t/rpl000014.test:
no sleep
mysql-test/t/rpl000015.test:
no sleep
mysql-test/t/rpl000016.test:
no sleep, test that master_pos_wait() works right
sql/slave.cc:
fixed bug in master_pos_wait()
Diffstat (limited to 'mysql-test/t/rpl000008.test')
-rw-r--r-- | mysql-test/t/rpl000008.test | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/t/rpl000008.test b/mysql-test/t/rpl000008.test index c4bbdb48a1e..8cbc724c3a6 100644 --- a/mysql-test/t/rpl000008.test +++ b/mysql-test/t/rpl000008.test @@ -20,7 +20,6 @@ insert into choo values(55); save_master_pos; connection slave; sync_with_master; -sleep 1; @r/rpl000008.result select foo.n,bar.m,choo.k from foo,bar,choo; connection master; drop table if exists foo,bar,choo; |