mirror of
https://github.com/MariaDB/server.git
synced 2025-09-03 20:43:11 +03:00

mysqltest can run without connecting to the manager for tests that do not require manager operations
30 lines
718 B
Plaintext
30 lines
718 B
Plaintext
slave stop;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
slave start;
|
|
show variables like 'rpl_recovery_rank';
|
|
Variable_name Value
|
|
rpl_recovery_rank 1
|
|
show status like 'Rpl_status';
|
|
Variable_name Value
|
|
Rpl_status AUTH_MASTER
|
|
show variables like 'rpl_recovery_rank';
|
|
Variable_name Value
|
|
rpl_recovery_rank 2
|
|
show status like 'Rpl_status';
|
|
Variable_name Value
|
|
Rpl_status IDLE_SLAVE
|
|
show variables like 'rpl_recovery_rank';
|
|
Variable_name Value
|
|
rpl_recovery_rank 3
|
|
show status like 'Rpl_status';
|
|
Variable_name Value
|
|
Rpl_status IDLE_SLAVE
|
|
show variables like 'rpl_recovery_rank';
|
|
Variable_name Value
|
|
rpl_recovery_rank 4
|
|
show status like 'Rpl_status';
|
|
Variable_name Value
|
|
Rpl_status IDLE_SLAVE
|