summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog/r/binlog_stm_drop_tbl.result
blob: f4596b808cfb8d95942820646a36176a3552b96d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DROP TABLE IF EXISTS t1;
RESET MASTER;
CREATE TABLE t1 (a INT);
SET AUTOCOMMIT=OFF;
BEGIN;
INSERT INTO t1 VALUES(1);
DROP TABLE t1;;
COMMIT;
show binlog events from <binlog_start>;
Log_name	Pos	Event_type	Server_id	End_log_pos	Info
master-bin.000001	#	Query	#	#	use `test`; CREATE TABLE t1 (a INT)
master-bin.000001	#	Query	#	#	use `test`; INSERT INTO t1 VALUES(1)
master-bin.000001	#	Query	#	#	use `test`; DROP TABLE t1