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/rpl000001.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/rpl000001.test')
-rw-r--r-- | mysql-test/t/rpl000001.test | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/t/rpl000001.test b/mysql-test/t/rpl000001.test index 0765fc6e318..c7b1f817e81 100644 --- a/mysql-test/t/rpl000001.test +++ b/mysql-test/t/rpl000001.test @@ -12,7 +12,6 @@ insert into foo values(1),(2); save_master_pos; connection slave; sync_with_master; -sleep 1; use test; select * from foo; select sum(length(word)) from t1; |