diff options
author | unknown <nick@mysql.com> | 2002-10-24 17:46:14 -0600 |
---|---|---|
committer | unknown <nick@mysql.com> | 2002-10-24 17:46:14 -0600 |
commit | 1efd8ea6b159461d95f4ca7e527b33438afc6ce4 (patch) | |
tree | cddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/r/rpl000002.result | |
parent | fed18a553b8d3895918ae845d68c4e69f17fc8b8 (diff) | |
download | mariadb-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/rpl000002.result')
-rw-r--r-- | mysql-test/r/rpl000002.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/rpl000002.result b/mysql-test/r/rpl000002.result index 4c2b3bdfde6..819f43da103 100644 --- a/mysql-test/r/rpl000002.result +++ b/mysql-test/r/rpl000002.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; drop table if exists t1; create table t1 (n int auto_increment primary key); set insert_id = 2000; @@ -17,7 +17,7 @@ show slave hosts; Server_id Host Port Rpl_recovery_rank Master_id 2 127.0.0.1 9999 2 1 drop table t1; -slave stop; +stop slave; drop table if exists t2; create table t2(id int auto_increment primary key, created datetime); set timestamp=12345; @@ -25,7 +25,7 @@ insert into t2 set created=now(); select * from t2; id created 1 1970-01-01 06:25:45 -slave start; +start slave; select * from t2; id created 1 1970-01-01 06:25:45 |