~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-12-23 16:59:55 UTC
  • mfrom: (1143.4.25 transaction_log)
  • Revision ID: brian@gaz-20091223165955-l6n17ertyv48v35y
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
id      padding
15
15
2       I hate testing.
16
16
COMMIT;
 
17
START TRANSACTION;
17
18
DROP TABLE IF EXISTS `t1`;
 
19
COMMIT;
 
20
START TRANSACTION;
18
21
CREATE TABLE t1 ( id INT NOT NULL PRIMARY KEY , padding VARCHAR(200) NOT NULL );
 
22
COMMIT;
 
23
START TRANSACTION;
19
24
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
 
25
COMMIT;
 
26
START TRANSACTION;
20
27
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
 
28
COMMIT;
21
29
SET GLOBAL transaction_log_truncate_debug= true;