2
DROP TABLE IF EXISTS t1;
5
--echo Populating master server
7
CREATE TABLE t1 (a int not null auto_increment, primary key(a));
8
INSERT INTO t1 VALUES (),(),();
10
# We wait a bit for the slave
11
# Might need a proper include file / test later
13
--echo Connecting to slave...
14
connect (slave_con,127.0.0.1,root,,test, $BOT0_S1);
15
echo Using connection slave_con...;
18
--echo Checking slave contents...
19
--source include/wait_for_slave_plugin_to_sync.inc
24
--echo Switching to default connection