1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

support for three slaves in mysql-test

mysql-test/mysql-test-run.sh:
  start three slaves in failover test
mysql-test/r/rpl_failsafe.result:
  check two more slaves
mysql-test/t/rpl_failsafe.test:
  check two more slaves
This commit is contained in:
unknown
2001-10-09 16:43:05 -06:00
parent 7740389944
commit 8b209415ff
3 changed files with 83 additions and 26 deletions

View File

@@ -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';