~kalebral-deactivatedaccount/drizzle/change-error_num_to_enum-2

« back to all changes in this revision

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

  • Committer: Patrick Crews
  • Date: 2010-08-19 23:23:15 UTC
  • mfrom: (1720.1.3 build)
  • Revision ID: gleebix@gmail.com-20100819232315-xcpbkwc5vz7kjhrp
Rollup patch - stewart's show create table patch + a couple of fixes

Show diffs side-by-side

added added

removed removed

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