config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/binlog/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/binlog/t/binlog_stm_binlog.test

# ==== Purpose ====
#
# No clear purpose, has probably been used in the past as a place to
# dump various tests.  Do not add more tests here.

# not gtids because it uses create...select and BUG#11756034 has not been fixed
--source include/not_gtid_enabled.inc
--source include/not_embedded.inc
--source include/have_binlog_format_mixed.inc

RESET MASTER;

# replace_regex should replace output of SHOW BINLOG EVENTS

create table t1 (a int, b int) engine=innodb;
begin;
insert into t1 values (1,2);
commit;
source include/show_binlog_events.inc;
drop table t1;

# This is a wrapper for binlog.test so that the same test case can be used 
# For both statement and row based bin logs 9/19/2005 [jbm]
-- source extra/binlog_tests/binlog.test

Man Man