1
0
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:
nick@mysql.com
2002-10-24 17:46:14 -06:00
parent 6c22ca4454
commit 62f36f0221
44 changed files with 167 additions and 206 deletions

View File

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