~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Diego Medina
  • Date: 2009-10-05 04:05:29 UTC
  • mfrom: (1161 staging)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: diego.medina@sun.com-20091005040529-5g1qe9gxzslpgefd
resolved small merge issue

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
, PRIMARY KEY (id)
 
6
);
 
7
INSERT INTO t1 VALUES (1, "I love testing.");
 
8
INSERT INTO t1 VALUES (2, "I hate testing.");
 
9
UPDATE t1 SET padding= "XXX" WHERE id= 1;
 
10
UPDATE t1 SET padding= "AAA";
 
11
/*  */
 
12
DROP TABLE IF EXISTS t1;
 
13
/*  */
 
14
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;