~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

have table wide default collation/collation_id in table proto as well as move to only storing it when it's not the default (utf8_general_ci). This means that the replication stream now doesn't produce COLLATE= in the transformation of create table back to SQL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
DROP TABLE IF EXISTS `test`.`t2`;
19
19
COMMIT;
20
20
START TRANSACTION;
21
 
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;
 
21
CREATE TABLE `test`.`t1` ( `id` INT NOT NULL, `padding` VARCHAR(200) NOT NULL COLLATE utf8_general_ci, PRIMARY KEY `PRIMARY` (`id`) ) ENGINE = InnoDB;
22
22
COMMIT;
23
23
START TRANSACTION;
24
24
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
27
27
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
28
28
COMMIT;
29
29
START TRANSACTION;
30
 
CREATE TABLE `test`.`t2` ( `id` INT NOT NULL, `padding` VARCHAR(200) NOT NULL COLLATE utf8_general_ci, PRIMARY KEY `PRIMARY` (`id`) ) ENGINE = InnoDB COLLATE = utf8_general_ci;
 
30
CREATE TABLE `test`.`t2` ( `id` INT NOT NULL, `padding` VARCHAR(200) NOT NULL COLLATE utf8_general_ci, PRIMARY KEY `PRIMARY` (`id`) ) ENGINE = InnoDB;
31
31
COMMIT;
32
32
START TRANSACTION;
33
33
INSERT INTO `test`.`t2` (`id`,`padding`) VALUES (1,'I love testing.');