~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/binlog/t/binlog_stm_binlog.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# REQUIREMENT
 
2
#   replace_regex should replace output of SHOW BINLOG EVENTS
 
3
 
 
4
create table t1 (a int, b int) engine=innodb;
 
5
begin;
 
6
insert into t1 values (1,2);
 
7
commit;
 
8
--replace_regex /\/\* xid=.* \*\//\/* XID *\// /Server ver: .*, Binlog ver: .*/Server ver: #, Binlog ver: #/ /table_id: [0-9]+/table_id: #/
 
9
show binlog events;
 
10
drop table t1;
 
11
 
 
12
# This is a wrapper for binlog.test so that the same test case can be used 
 
13
# For both statement and row based bin logs 9/19/2005 [jbm]
 
14
 
 
15
-- source include/not_embedded.inc
 
16
-- source include/have_binlog_format_mixed.inc
 
17
-- source extra/binlog_tests/binlog.test
 
18