diff options
author | nick@mysql.com <> | 2002-10-24 17:46:14 -0600 |
---|---|---|
committer | nick@mysql.com <> | 2002-10-24 17:46:14 -0600 |
commit | 62f36f0221da263496b67e7665656103e71a695e (patch) | |
tree | cddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/t/rpl000015.test | |
parent | 6c22ca4454c79db681b376e4f449d9a60ff353bc (diff) | |
download | mariadb-git-62f36f0221da263496b67e7665656103e71a695e.tar.gz |
altered syntax from SLAVE START|STOP to START|STOP SLAVE
Diffstat (limited to 'mysql-test/t/rpl000015.test')
-rw-r--r-- | mysql-test/t/rpl000015.test | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/mysql-test/t/rpl000015.test b/mysql-test/t/rpl000015.test index c42e14699c5..37155d33f08 100644 --- a/mysql-test/t/rpl000015.test +++ b/mysql-test/t/rpl000015.test @@ -18,7 +18,7 @@ eval change master to master_host='127.0.0.1',master_user='root', master_password='',master_port=$MASTER_MYPORT; --replace_result $MASTER_MYPORT MASTER_PORT show slave status; -slave start; +start slave; sync_with_master; --replace_result $MASTER_MYPORT MASTER_PORT show slave status; @@ -26,12 +26,8 @@ connection master; drop table if exists t1; create table t1 (n int); insert into t1 values (10),(45),(90); -save_master_pos; -connection slave; -sync_with_master; +sync_slave_with_master; select * from t1; connection master; drop table t1; -save_master_pos; -connection slave; -sync_with_master; +sync_slave_with_master; |