summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_log.test
diff options
context:
space:
mode:
authorunknown <nick@mysql.com>2002-10-24 17:46:14 -0600
committerunknown <nick@mysql.com>2002-10-24 17:46:14 -0600
commit458ced9f340a16845ee3f4ae12765e9992d6afcc (patch)
treecddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/t/rpl_log.test
parent27d11e85b234de7ec48d57d5720c9871654adb2f (diff)
downloadmariadb-git-458ced9f340a16845ee3f4ae12765e9992d6afcc.tar.gz
altered syntax from SLAVE START|STOP to START|STOP SLAVE
mysql-test/mysql-test-run.sh: Added --rpl option which tests all t/rpl*.test tests.
Diffstat (limited to 'mysql-test/t/rpl_log.test')
-rw-r--r--mysql-test/t/rpl_log.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/t/rpl_log.test b/mysql-test/t/rpl_log.test
index 85782e78142..604b076f433 100644
--- a/mysql-test/t/rpl_log.test
+++ b/mysql-test/t/rpl_log.test
@@ -2,7 +2,7 @@ source include/master-slave.inc;
#clean up slave binlogs
connection slave;
-slave stop;
+stop slave;
reset master;
reset slave;
let $VERSION=`select version()`;
@@ -26,10 +26,10 @@ flush logs;
save_master_pos;
connection slave;
-slave start;
+start slave;
sync_with_master;
flush logs;
-slave stop;
+stop slave;
connection master;
# Create some entries for second log
@@ -43,7 +43,7 @@ show binlog events in 'master-bin.002';
show master logs;
save_master_pos;
connection slave;
-slave start;
+start slave;
sync_with_master;
show master logs;
--replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT $VERSION VERSION