~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/command_log/r/insert_multi.result

Merging command2sql library work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
/*  */
10
10
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
11
11
/*  */
12
 
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("1", "I love testing.");
 
12
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES ('1','I love testing.');
13
13
/*  */
14
 
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("2", "I hate testing.");
 
14
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES ('2','I hate testing.');
15
15
SET GLOBAL command_log_truncate_debug= true;