1
DROP TABLE IF EXISTS t1;
5
, padding VARCHAR(200) NOT NULL
7
INSERT INTO t1 VALUES (1, "I love testing.");
8
INSERT INTO t1 VALUES (2, "I hate testing.");
13
, padding VARCHAR(200) NOT NULL
15
INSERT INTO t1 VALUES (1, "I love testing.");
16
INSERT INTO t1 VALUES (2, "I hate testing.");
18
DROP TABLE IF EXISTS t1;
19
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
21
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
22
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
25
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
26
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
27
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
29
SET GLOBAL transaction_log_truncate_debug= true;