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/rpl_log.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/rpl_log.result')
-rw-r--r-- | mysql-test/r/rpl_log.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/rpl_log.result b/mysql-test/r/rpl_log.result index b6e1419b466..79093a4ae7a 100644 --- a/mysql-test/r/rpl_log.result +++ b/mysql-test/r/rpl_log.result @@ -1,10 +1,10 @@ -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; -slave stop; +start slave; +stop slave; reset master; reset slave; reset master; @@ -36,9 +36,9 @@ show binlog events from 79 limit 2,1; Log_name Pos Event_type Server_id Orig_log_pos Info master-bin.001 200 Query 1 200 use `test`; insert into t1 values (NULL) flush logs; -slave start; +start slave; flush logs; -slave stop; +stop slave; create table t1 (n int); insert into t1 values (1); drop table t1; @@ -63,7 +63,7 @@ show master logs; Log_name master-bin.001 master-bin.002 -slave start; +start slave; show master logs; Log_name slave-bin.001 |