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