~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/serial_event_log/r/multi_insert.result

MergeĀ fromĀ lp:~jaypipes/drizzle/serial_event_log

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1 (
 
3
id INT NOT NULL
 
4
, padding VARCHAR(200) NOT NULL
 
5
);
 
6
INSERT INTO t1 VALUES (1, "I love testing."), (2, "I hate testing.");
 
7
/*  */
 
8
/* SID: 1 XID: 0 */ DROP TABLE IF EXISTS t1;
 
9
/*  */
 
10
/* SID: 1 XID: 0 */ CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
 
11
/*  */
 
12
/* SID: 1 XID: 3 */ INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("1", "I love testing.");
 
13
/*  */
 
14
/* SID: 1 XID: 3 */ INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("2", "I hate testing.");