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

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/rand.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:
21
21
START TRANSACTION;
22
22
DROP TABLE `test`.`t1`;
23
23
COMMIT;
 
24
 
 
25
Generating statements for innodb replication log
 
26
START TRANSACTION;
 
27
DROP TABLE IF EXISTS `test`.`t1`;
 
28
COMMIT;
 
29
START TRANSACTION;
 
30
CREATE TABLE `test`.`t1` (   `id` INT NOT NULL,   PRIMARY KEY (`id`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
 
31
COMMIT;
 
32
START TRANSACTION;
 
33
INSERT INTO `test`.`t1` (`id`) VALUES (1);
 
34
COMMIT;
 
35
START TRANSACTION;
 
36
INSERT INTO `test`.`t1` (`id`) VALUES (17);
 
37
COMMIT;
 
38
START TRANSACTION;
 
39
DROP TABLE `test`.`t1`;
 
40
COMMIT;
24
41
SET GLOBAL transaction_log_truncate_debug= true;