~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merging Stewart's show create table patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
DROP TABLE IF EXISTS `test`.`t1`;
11
11
COMMIT;
12
12
START TRANSACTION;
13
 
CREATE TABLE `test`.`t1` ( `id` INT NOT NULL, `padding` VARCHAR(200) NOT NULL COLLATE utf8_general_ci, PRIMARY KEY `PRIMARY` (`id`) ) ENGINE = InnoDB COLLATE = utf8_general_ci;
 
13
CREATE TABLE `test`.`t1` (   `id` int NOT NULL,   `padding` varchar(200) NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
14
14
COMMIT;
15
15
START TRANSACTION;
16
16
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');