1# ==== Purpose ====
2#
3# No clear purpose, has probably been used in the past as a place to
4# dump various tests.  Do not add more tests here.
5
6# not gtids because it uses create...select and BUG#11756034 has not been fixed
7--source include/not_gtid_enabled.inc
8--source include/not_embedded.inc
9--source include/have_binlog_format_mixed.inc
10
11RESET MASTER;
12
13# replace_regex should replace output of SHOW BINLOG EVENTS
14
15create table t1 (a int, b int) engine=innodb;
16begin;
17insert into t1 values (1,2);
18commit;
19source include/show_binlog_events.inc;
20drop table t1;
21
22# This is a wrapper for binlog.test so that the same test case can be used
23# For both statement and row based bin logs 9/19/2005 [jbm]
24-- source extra/binlog_tests/binlog.test
25