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 | 458ced9f340a16845ee3f4ae12765e9992d6afcc (patch) | |
tree | cddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/t/rpl000018.test | |
parent | 27d11e85b234de7ec48d57d5720c9871654adb2f (diff) | |
download | mariadb-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/rpl000018.test')
-rw-r--r-- | mysql-test/t/rpl000018.test | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/mysql-test/t/rpl000018.test b/mysql-test/t/rpl000018.test index 291b482b912..f82f365a35e 100644 --- a/mysql-test/t/rpl000018.test +++ b/mysql-test/t/rpl000018.test @@ -10,18 +10,14 @@ server_stop master; server_start master; connection slave; reset slave; -slave start; +start slave; connection master; show master logs; drop table if exists t1; create table t1(n int); insert into t1 values (3351); -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; |