~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: lbieber
  • Date: 2010-09-08 02:51:16 UTC
  • mfrom: (1748.1.3 build)
  • Revision ID: lbieber@orisndriz03-20100908025116-adod2fvbgqhpox4d
Merge Andrew - fix bug 628419 - A double free was possible during a range query cleanup
Merge Andrew - fix bug 550251 - If an error occurred during results fetch in drizzle client the result set was not freed correctly ending in segfault upon client end.
Merge Andrew - fix bug 619591 - In SHOW CREATE TABLE type (INT, VARCHAR, etc...) is now uppercase and Collation is now shown for VARCHAR columns 

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
DROP TABLE IF EXISTS `test`.`t1`;
19
19
COMMIT;
20
20
START TRANSACTION;
21
 
CREATE TABLE `test`.`t1` (   `id` int NOT NULL,   `padding` varchar(200) NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
 
21
CREATE TABLE `test`.`t1` (   `id` INT NOT NULL,   `padding` VARCHAR(200) COLLATE utf8_general_ci NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
22
22
COMMIT;
23
23
START TRANSACTION;
24
24
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');