~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Eric Day
  • Date: 2009-10-31 21:53:33 UTC
  • mfrom: (1200 staging)
  • mto: This revision was merged to the branch mainline in revision 1202.
  • Revision ID: eday@oddments.org-20091031215333-j94bjoanwmi68p6f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
INSERT INTO t1 VALUES (2, "I hate testing.");
9
9
UPDATE t1 SET padding= "XXX" WHERE id= 1;
10
10
UPDATE t1 SET padding= "AAA";
11
 
/*  */
12
 
DROP Table IF EXISTS `t1`;
13
 
/*  */
 
11
DROP TABLE t1;
 
12
CREATE TABLE t1 (
 
13
id int AUTO_INCREMENT NOT NULL PRIMARY KEY
 
14
, name varchar(1024)
 
15
, alias varchar(1024)
 
16
);
 
17
INSERT INTO t1 (name,alias) VALUES ("jeff lebowski","dude");
 
18
UPDATE t1 SET alias = "the dude" WHERE alias = "dude";
 
19
DROP TABLE t1;
 
20
DROP TABLE IF EXISTS `t1`;
14
21
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL , PRIMARY KEY (id) );
15
 
/*  */
16
 
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES ('1','I love testing.');
17
 
/*  */
18
 
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES ('2','I hate testing.');
19
 
/*  */
20
 
UPDATE `test`.`t1` SET `padding`='XXX' WHERE `id`='1';
21
 
/*  */
22
 
UPDATE `test`.`t1` SET `padding`='AAA' WHERE `id`='1';
23
 
/*  */
24
 
UPDATE `test`.`t1` SET `padding`='AAA' WHERE `id`='2';
25
 
SET GLOBAL command_log_truncate_debug= true;
 
22
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (1,'I love testing.');
 
23
INSERT INTO `test`.`t1` (`id`,`padding`) VALUES (2,'I hate testing.');
 
24
UPDATE `test`.`t1` SET `padding`='XXX' WHERE `id`=1;
 
25
START TRANSACTION;
 
26
UPDATE `test`.`t1` SET `padding`='AAA' WHERE `id`=1;
 
27
UPDATE `test`.`t1` SET `padding`='AAA' WHERE `id`=2;
 
28
COMMIT;
 
29
DROP TABLE `t1`;
 
30
CREATE TABLE t1 ( id int AUTO_INCREMENT NOT NULL PRIMARY KEY , name varchar(1024) , alias varchar(1024) );
 
31
INSERT INTO `test`.`t1` (`id`,`name`,`alias`) VALUES (1,'jeff lebowski','dude');
 
32
UPDATE `test`.`t1` SET `alias`='the dude' WHERE `id`=1;
 
33
DROP TABLE `t1`;
 
34
SET GLOBAL transaction_log_truncate_debug= true;