Current Path : /home/usr.opt/mysql57/mysql-test/suite/rpl/t/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/t/rpl_000011.test |
--source include/not_group_replication_plugin.inc source include/master-slave.inc; create table t1 (n int); insert into t1 values(1); --source include/sync_slave_sql_with_master.inc stop slave; --source include/wait_for_slave_to_stop.inc start slave; --source include/wait_for_slave_to_start.inc connection master; insert into t1 values(2); #let slave catch up --source include/sync_slave_sql_with_master.inc select * from t1; connection master; drop table t1; --source include/sync_slave_sql_with_master.inc # End of 4.1 tests --source include/rpl_end.inc