diff options
author | Horst.Hunger <horst.hunger@sun.com> | 2009-11-23 17:38:42 +0100 |
---|---|---|
committer | Horst.Hunger <horst.hunger@sun.com> | 2009-11-23 17:38:42 +0100 |
commit | 206c636ec8df77b50204e305a3ad44b6ed32b3bc (patch) | |
tree | ddea188bfb6fbcb369218aaff37e2beabaea38bd /mysql-test/include/rpl_ipv6.inc | |
parent | 23159440504311372b2c081c1b5f2cb2f7d98ef3 (diff) | |
download | mariadb-git-206c636ec8df77b50204e305a3ad44b6ed32b3bc.tar.gz |
Reviewed patch of QA results for WL#798.
Diffstat (limited to 'mysql-test/include/rpl_ipv6.inc')
-rw-r--r-- | mysql-test/include/rpl_ipv6.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/include/rpl_ipv6.inc b/mysql-test/include/rpl_ipv6.inc new file mode 100644 index 00000000000..90bc2b2a422 --- /dev/null +++ b/mysql-test/include/rpl_ipv6.inc @@ -0,0 +1,22 @@ +--echo connect (master,$IPv6,root,,test,MASTER_MYPORT,MASTER_MYSOCK); +connect (master,$IPv6,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK); +--echo connect (slave,$IPv6,root,,test,SLAVE_MYPORT,SLAVE_MYSOCK); +connect (slave,$IPv6,root,,test,$SLAVE_MYPORT,$SLAVE_MYSOCK); +--echo connection master; +connection master; +reset master; +source include/show_master_status.inc; +save_master_pos; +--echo connection slave; +connection slave; +reset slave; +source include/show_slave_status2.inc; +eval change master to master_host='$IPv6'; +source include/show_slave_status2.inc; +--echo disconnect slave; +disconnect slave; +--echo disconnect master; +disconnect master; +--echo connection default; +connection default; + |