diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-12-01 15:00:32 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-12-01 15:00:32 -0700 |
commit | d06b344ab53efcb0ed6a2d27a3d9f69ca0dcf306 (patch) | |
tree | f31bdc8fa7cd7f2aa62df8dca11e5439922dc482 /mysql-test/r/rpl000015.result | |
parent | cf87803b0929c3f259dc0489ff3a1045b7859068 (diff) | |
download | mariadb-git-d06b344ab53efcb0ed6a2d27a3d9f69ca0dcf306.tar.gz |
use $MASTER_PORT
Diffstat (limited to 'mysql-test/r/rpl000015.result')
-rw-r--r-- | mysql-test/r/rpl000015.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/rpl000015.result b/mysql-test/r/rpl000015.result index 6418ac590fe..e3bde4a5abd 100644 --- a/mysql-test/r/rpl000015.result +++ b/mysql-test/r/rpl000015.result @@ -9,16 +9,16 @@ Master_Host Master_User Master_Port Connect_retry Log_File Pos Slave_Running Rep change master to master_host='127.0.0.1'; show slave status; Master_Host Master_User Master_Port Connect_retry Log_File Pos Slave_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Last_log_seq -127.0.0.1 test 9998 60 4 No 0 0 0 +127.0.0.1 test 3306 60 4 No 0 0 0 change master to master_host='127.0.0.1',master_user='root', -master_password='',master_port=$MASTER_MYPORT; +master_password='',master_port=9306; show slave status; Master_Host Master_User Master_Port Connect_retry Log_File Pos Slave_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Last_log_seq -127.0.0.1 root 9999 60 4 No 0 0 0 +127.0.0.1 root 9306 60 4 No 0 0 0 slave start; show slave status; Master_Host Master_User Master_Port Connect_retry Log_File Pos Slave_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Last_log_seq -127.0.0.1 root 9999 60 master-bin.001 79 Yes 0 0 1 +127.0.0.1 root 9306 60 master-bin.001 79 Yes 0 0 1 drop table if exists t1; create table t1 (n int); insert into t1 values (10),(45),(90); |