~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merged up with build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
UPDATE t1 SET counter = counter + 1 WHERE id = 1;
27
27
UPDATE t1 SET counter = counter + 1 WHERE id IN (2,3);
28
28
DROP TABLE t1;
 
29
CREATE TABLE t1 (
 
30
id INT NOT NULL
 
31
, padding VARCHAR(200) NOT NULL
 
32
, PRIMARY KEY (id)
 
33
);
 
34
INSERT INTO t1 VALUES (1, "I love testing.");
 
35
INSERT INTO t1 VALUES (2, "I hate testing.");
 
36
UPDATE t1 SET id = 4 WHERE id = 2;
 
37
DROP TABLE t1;
29
38
DROP TABLE IF EXISTS `t1`;
30
39
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL , PRIMARY KEY (id) );
31
40
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
52
61
UPDATE `test`.`t1` SET `counter`=4 WHERE `id`=3;
53
62
COMMIT;
54
63
DROP TABLE `t1`;
 
64
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL , PRIMARY KEY (id) );
 
65
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
 
66
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
 
67
UPDATE `test`.`t1` SET `id`=4 WHERE `id`=2;
 
68
DROP TABLE `t1`;
55
69
SET GLOBAL transaction_log_truncate_debug= true;