~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2010-04-08 16:27:25 UTC
  • mfrom: (1405.6.10 replication-pairs)
  • mto: This revision was merged to the branch mainline in revision 1457.
  • Revision ID: jpipes@serialcoder-20100408162725-sugbgn38oxjqclq2
Merge trunk and replication-pairs with conflict resolution

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
);
6
6
INSERT INTO t1 VALUES (1, "I love testing.");
7
7
INSERT INTO t1 VALUES (2, "I hate testing.");
 
8
DROP TABLE t1;
8
9
START TRANSACTION;
9
10
DROP TABLE IF EXISTS `test`.`t1`;
10
11
COMMIT;
17
18
START TRANSACTION;
18
19
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
19
20
COMMIT;
 
21
START TRANSACTION;
 
22
DROP TABLE `test`.`t1`;
 
23
COMMIT;
20
24
SET GLOBAL transaction_log_truncate_debug= true;