diff options
author | sasha@mysql.sashanet.com <> | 2001-10-09 16:43:05 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-10-09 16:43:05 -0600 |
commit | 7b06c3c3116417b51458d347242ea12ea91e29ad (patch) | |
tree | e0f743a148a4cef684f5d46c5781204f85e1c2cd /mysql-test/t/rpl_failsafe.test | |
parent | 409a313895bb25b1ffed89c9dd724b687bcdcf25 (diff) | |
download | mariadb-git-7b06c3c3116417b51458d347242ea12ea91e29ad.tar.gz |
support for three slaves in mysql-test
Diffstat (limited to 'mysql-test/t/rpl_failsafe.test')
-rw-r--r-- | mysql-test/t/rpl_failsafe.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_failsafe.test b/mysql-test/t/rpl_failsafe.test index b8ef5b3f365..75f1c9ee3b2 100644 --- a/mysql-test/t/rpl_failsafe.test +++ b/mysql-test/t/rpl_failsafe.test @@ -1,5 +1,11 @@ source include/master-slave.inc; +connect (slave_sec,localhost,root,,test,0,slave.sock-1); +connect (slave_ter,localhost,root,,test,0,slave.sock-2); connection master; show variables like 'rpl_recovery_rank'; connection slave; show variables like 'rpl_recovery_rank'; +connection slave_sec; +show variables like 'rpl_recovery_rank'; +connection slave_ter; +show variables like 'rpl_recovery_rank'; |