~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/master-slave.inc

  • Committer: Brian Aker
  • Date: 2011-12-12 21:56:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2470.
  • Revision ID: brian@tangent.org-20111212215634-1ecdbeoitkmie1rw
Move from using 127.0.0.1, to localhost. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Replication tests need binlog
2
2
source include/have_log_bin.inc;
3
3
 
4
 
connect (master,127.0.0.1,root,,test,$MASTER_MYPORT,);
5
 
connect (master1,127.0.0.1,root,,test,$MASTER_MYPORT,);
6
 
connect (slave,127.0.0.1,root,,test,$SLAVE_MYPORT,);
7
 
connect (slave1,127.0.0.1,root,,test,$SLAVE_MYPORT,);
 
4
connect (master,localhost,root,,test,$MASTER_MYPORT,);
 
5
connect (master1,localhost,root,,test,$MASTER_MYPORT,);
 
6
connect (slave,localhost,root,,test,$SLAVE_MYPORT,);
 
7
connect (slave1,localhost,root,,test,$SLAVE_MYPORT,);
8
8
 
9
9
-- source include/master-slave-reset.inc
10
10