~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merging Jay.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1 (
 
3
id INT NOT NULL
 
4
, padding VARCHAR(200) NOT NULL
 
5
);
 
6
INSERT INTO t1 VALUES (1, "I love testing.");
 
7
INSERT INTO t1 VALUES (2, "I hate testing.");
 
8
START TRANSACTION;
 
9
SELECT * FROM t1 WHERE id = 1;
 
10
id      padding
 
11
1       I love testing.
 
12
SELECT * FROM t1 WHERE id = 2;
 
13
id      padding
 
14
2       I hate testing.
 
15
COMMIT;
 
16
DROP TABLE IF EXISTS `t1`;
 
17
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
 
18
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
 
19
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
 
20
SET GLOBAL transaction_log_truncate_debug= true;