mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
altered syntax from SLAVE START|STOP to START|STOP SLAVE
This commit is contained in:
@ -4,7 +4,7 @@ connect (slave,127.0.0.1,root,,test,$SLAVE_MYPORT,);
|
||||
connect (slave1,127.0.0.1,root,,test,$SLAVE_MYPORT,);
|
||||
connection slave;
|
||||
--error 0,1199
|
||||
!slave stop;
|
||||
!stop slave;
|
||||
@r/slave-stopped.result show status like 'Slave_running';
|
||||
connection master;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
@ -13,7 +13,7 @@ connection slave;
|
||||
reset slave;
|
||||
# Clean up old test tables
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
slave start;
|
||||
start slave;
|
||||
@r/slave-running.result show status like 'Slave_running';
|
||||
|
||||
# Set the default connection to 'master'
|
||||
|
Reference in New Issue
Block a user