summaryrefslogtreecommitdiff
path: root/mysql-test/r/rpl000004.result
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
commit1efd8ea6b159461d95f4ca7e527b33438afc6ce4 (patch)
treecddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/r/rpl000004.result
parentfed18a553b8d3895918ae845d68c4e69f17fc8b8 (diff)
downloadmariadb-git-1efd8ea6b159461d95f4ca7e527b33438afc6ce4.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/r/rpl000004.result')
-rw-r--r--mysql-test/r/rpl000004.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/rpl000004.result b/mysql-test/r/rpl000004.result
index 82b208d0b58..a677eac36d4 100644
--- a/mysql-test/r/rpl000004.result
+++ b/mysql-test/r/rpl000004.result
@@ -1,9 +1,9 @@
-slave stop;
+stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
-slave start;
+start slave;
set SQL_LOG_BIN=0;
drop table if exists t1;
create table t1 (word char(20) not null, index(word));