~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to mysql-test/suite/binlog/r/binlog_stm_drop_tbl.result

auto-merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
RESET MASTER;
 
3
CREATE TABLE t1 (a INT);
 
4
SET AUTOCOMMIT=OFF;
 
5
BEGIN;
 
6
INSERT INTO t1 VALUES(1);
 
7
DROP TABLE t1;;
 
8
COMMIT;
 
9
show binlog events from <binlog_start>;
 
10
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
 
11
master-bin.000001       #       Query   #       #       use `test`; CREATE TABLE t1 (a INT)
 
12
master-bin.000001       #       Query   #       #       use `test`; INSERT INTO t1 VALUES(1)
 
13
master-bin.000001       #       Query   #       #       use `test`; DROP TABLE t1