~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-09 06:02:39 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20101209060239-t0ujftvcvd558yno
Tags: upstream-2010.12.05
ImportĀ upstreamĀ versionĀ 2010.12.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
START TRANSACTION;
27
27
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
28
28
COMMIT;
 
29
 
 
30
Generating statements for innodb replication log
 
31
START TRANSACTION;
 
32
DROP TABLE IF EXISTS `test`.`t1`;
 
33
COMMIT;
 
34
START TRANSACTION;
 
35
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;
 
36
COMMIT;
 
37
START TRANSACTION;
 
38
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
 
39
COMMIT;
 
40
START TRANSACTION;
 
41
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
 
42
COMMIT;
29
43
SET GLOBAL transaction_log_truncate_debug= true;