summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000011.test
diff options
context:
space:
mode:
authornick@mysql.com <>2002-10-24 17:46:14 -0600
committernick@mysql.com <>2002-10-24 17:46:14 -0600
commit62f36f0221da263496b67e7665656103e71a695e (patch)
treecddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/t/rpl000011.test
parent6c22ca4454c79db681b376e4f449d9a60ff353bc (diff)
downloadmariadb-git-62f36f0221da263496b67e7665656103e71a695e.tar.gz
altered syntax from SLAVE START|STOP to START|STOP SLAVE
Diffstat (limited to 'mysql-test/t/rpl000011.test')
-rw-r--r--mysql-test/t/rpl000011.test16
1 files changed, 5 insertions, 11 deletions
diff --git a/mysql-test/t/rpl000011.test b/mysql-test/t/rpl000011.test
index d75937e3f81..dc84741694c 100644
--- a/mysql-test/t/rpl000011.test
+++ b/mysql-test/t/rpl000011.test
@@ -2,20 +2,14 @@ source include/master-slave.inc;
drop table if exists t1;
create table t1 (n int);
insert into t1 values(1);
-save_master_pos;
-connection slave;
-sync_with_master;
-slave stop;
-slave start;
+sync_slave_with_master;
+stop slave;
+start slave;
connection master;
insert into t1 values(2);
-save_master_pos;
-connection slave;
#let slave catch up
-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;