~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/insert_multi.result

Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DROP TABLE IF EXISTS t1;
2
2
CREATE TABLE t1 (
3
 
id INT NOT NULL
 
3
id INT NOT NULL PRIMARY KEY
4
4
, padding VARCHAR(200) NOT NULL
5
5
);
6
6
INSERT INTO t1 VALUES (1, "I love testing."), (2, "I hate testing.");
7
7
DROP TABLE IF EXISTS `t1`;
8
 
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
 
8
CREATE TABLE t1 ( id INT NOT NULL PRIMARY KEY , padding VARCHAR(200) NOT NULL );
9
9
START TRANSACTION;
10
10
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
11
11
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');