summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog/r/binlog_truncate_myisam.result
blob: 9f01c01517884840b8fac870ede9883e1cdf1d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
RESET MASTER;
CREATE TABLE t1 (a INT) ENGINE=MyISAM;
CREATE TABLE t2 (a INT) ENGINE=MyISAM;
INSERT INTO t2 VALUES (1),(2),(3);
**** Truncate of empty table shall be logged
TRUNCATE TABLE t1;
TRUNCATE TABLE t2;
show binlog events from <binlog_start>;
Log_name	Pos	Event_type	Server_id	End_log_pos	Info
master-bin.000001	#	Query	#	#	use `test`; TRUNCATE TABLE t1
master-bin.000001	#	Query	#	#	use `test`; TRUNCATE TABLE t2
DROP TABLE t1,t2;