config root man

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
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/t/rpl_000010.test

# This tests the offset off by 22 mystery bug
# Must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1

--source include/not_group_replication_plugin.inc
source include/not_gtid_enabled.inc;
source include/master-slave.inc;

create table t1 (n int not null auto_increment primary key);
insert into t1 values(NULL);
insert into t1 values(2);
--source include/sync_slave_sql_with_master.inc
select n 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

Man Man