summaryrefslogtreecommitdiff
path: root/mysql-test/r/binlog.result
blob: 4a54ccebd580d3d3183c3418f2946f8ea8b97ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
drop table if exists t1, t2;
reset master;
create table t1 (a int) engine=bdb;
create table t2 (a int) engine=innodb;
begin;
insert t1 values (5);
commit;
begin;
insert t2 values (5);
commit;
show binlog events from 96;
Log_name	Pos	Event_type	Server_id	End_log_pos	Info
master-bin.000001	96	Query	1	194	use `test`; create table t1 (a int) engine=bdb
master-bin.000001	194	Query	1	295	use `test`; create table t2 (a int) engine=innodb
master-bin.000001	295	Query	1	364	use `test`; BEGIN
master-bin.000001	364	Query	1	84	use `test`; insert t1 values (5)
master-bin.000001	448	Query	1	518	use `test`; COMMIT
master-bin.000001	518	Query	1	587	use `test`; BEGIN
master-bin.000001	587	Query	1	84	use `test`; insert t2 values (5)
master-bin.000001	671	Xid	1	698	COMMIT /* xid=318 */
reset master;
drop table t1,t2;