1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-06 13:10:12 +03:00

Forgotten to add the windows version of the tests. Done with that patch.

This commit is contained in:
Horst.Hunger
2009-11-26 13:03:36 +01:00
parent f532170898
commit 8424bef0c5
18 changed files with 971 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
#################### IP: 127.0.0.1 ###########################
connect (master,127.0.0.1,root,,test,MASTER_MYPORT,MASTER_MYSOCK);
connect (slave,127.0.0.1,root,,test,SLAVE_MYPORT,SLAVE_MYSOCK);
connection master;
reset master;
show master status;
File Position Binlog_Do_DB Binlog_Ignore_DB
master-bin.000001 # <Binlog_Do_DB> <Binlog_Ignore_DB>
connection slave;
reset slave;
change master to master_host='127.0.0.1';
Master_Host: 127.0.0.1
disconnect slave;
disconnect master;
connection default;
#################### IP: ::1 ###########################
connect (master,127.0.0.1,root,,test,MASTER_MYPORT);
connect (slave,127.0.0.1,root,,test,SLAVE_MYPORT);
connection master;
reset master;
show master status;
File Position Binlog_Do_DB Binlog_Ignore_DB
master-bin.000001 # <Binlog_Do_DB> <Binlog_Ignore_DB>
connection slave;
reset slave;
Master_Host: 127.0.0.1
change master to master_host='::1';
Master_Host: ::1
change master to master_host='127.0.0.1';
Master_Host: 127.0.0.1
change master to master_host='0:0:0:0:0:0:0:1';
Master_Host 0:0:0:0:0:0:0:1
disconnect slave;
disconnect master;
connection default;