~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merging command2sql library work.

Show diffs side-by-side

added added

removed removed

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