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/rpl000011.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/rpl000011.test')
-rw-r--r-- | mysql-test/t/rpl000011.test | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/t/rpl000011.test b/mysql-test/t/rpl000011.test index 8e9129f875e..04b6898f74a 100644 --- a/mysql-test/t/rpl000011.test +++ b/mysql-test/t/rpl000011.test @@ -6,7 +6,6 @@ create table t1 (n int); insert into t1 values(1); save_master_pos; connection slave; -#give slave some breathing room to get started sync_with_master; slave stop; slave start; @@ -16,7 +15,6 @@ save_master_pos; connection slave; #let slave catch up sync_with_master; -sleep 1; @r/rpl000011.result select * from t1; connection master; drop table t1; |