~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/rename.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:
12
12
DROP TABLE IF EXISTS `test`.`t2`;
13
13
COMMIT;
14
14
START TRANSACTION;
15
 
CREATE TABLE `test`.`t1` (   `id` int NOT NULL,   `padding` varchar(200) NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
 
15
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;
16
16
COMMIT;
17
17
START TRANSACTION;
18
18
RENAME TABLE t1 TO t2;