~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Connect to both master and slave
connect (master,localhost,root,,test,$MASTER_MYPORT,);
connect (slave,localhost,root,,test,$SLAVE_MYPORT,);

vertical_results;

echo == MASTER ===========================================================;
connection master;
show master status;
show slave status;

echo == SLAVE ===========================================================;
connection slave;
show master status;
show slave status;