17
18
DROP TABLE IF EXISTS `t1`;
18
21
CREATE TABLE t1 ( id INT NOT NULL PRIMARY KEY , padding VARCHAR(200) NOT NULL );
19
24
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
20
27
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
21
29
SET GLOBAL transaction_log_truncate_debug= true;