1
DROP TABLE IF EXISTS t1;
4
, padding VARCHAR(200) NOT NULL
6
INSERT INTO t1 VALUES (1, "I love testing.");
7
INSERT INTO t1 VALUES (2, "I hate testing.");
9
DROP TABLE IF EXISTS t1;
11
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
13
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("1", "I love testing.");
15
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("2", "I hate testing.");
16
SET GLOBAL command_log_truncate_debug= true;