summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000015.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/rpl000015.test')
-rw-r--r--mysql-test/t/rpl000015.test4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/t/rpl000015.test b/mysql-test/t/rpl000015.test
index 825d1317bbc..73a10bed7b3 100644
--- a/mysql-test/t/rpl000015.test
+++ b/mysql-test/t/rpl000015.test
@@ -1,6 +1,5 @@
connect (master,localhost,root,,test,0,mysql-master.sock);
connect (slave,localhost,root,,test,0, mysql-slave.sock);
-source include/have_default_master.inc;
connection master;
reset master;
show master status;
@@ -9,12 +8,15 @@ connection slave;
reset slave;
show slave status;
change master to master_host='127.0.0.1';
+--replace_result 3306 9998 9306 9999 3334 9999 3335 9999
show slave status;
eval change master to master_host='127.0.0.1',master_user='root',
master_password='',master_port=$MASTER_MYPORT;
+--replace_result 9306 9999 3334 9999 3335 9999
show slave status;
slave start;
sync_with_master;
+--replace_result 9306 9999 3334 9999 3335 9999
show slave status;
connection master;
drop table if exists t1;