~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merging command2sql library work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
/*  */
19
19
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
20
20
/*  */
21
 
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("1", "I love testing.");
 
21
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES ('1','I love testing.');
22
22
/*  */
23
 
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("2", "I hate testing.");
 
23
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES ('2','I hate testing.');
24
24
/*  */
25
25
CREATE TABLE t2 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
26
26
/*  */
27
 
INSERT INTO `test`.`t2` (`id`, `padding`) VALUES ("1", "I love testing.");
 
27
INSERT INTO `test`.`t2` (`id`,`padding`) VALUES ('1','I love testing.');
28
28
/*  */
29
 
INSERT INTO `test`.`t2` (`id`, `padding`) VALUES ("2", "I hate testing.");
 
29
INSERT INTO `test`.`t2` (`id`,`padding`) VALUES ('2','I hate testing.');
30
30
SET GLOBAL command_log_truncate_debug= true;