~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/update.result

Updated pandora-build files to version 0.133

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
client varchar(255) NOT NULL default '',
75
75
replyto varchar(255) NOT NULL default '',
76
76
subject varchar(100) NOT NULL default '',
77
 
timestamp_arg int NOT NULL default '0',
 
77
timestamp int NOT NULL default '0',
78
78
tstamp timestamp NOT NULL,
79
79
status int NOT NULL default '0',
80
80
type varchar(15) NOT NULL default '',
89
89
comment text,
90
90
header text,
91
91
PRIMARY KEY  (lfdnr),
92
 
KEY k1 (timestamp_arg),
 
92
KEY k1 (timestamp),
93
93
KEY k2 (type),
94
94
KEY k3 (parent),
95
95
KEY k4 (assignment),
277
277
create table t1 (a int);
278
278
insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
279
279
create table t2 (a int, filler1 char(200), filler2 char(200), key(a));
280
 
insert into t2 select A.a + 10*B.a, 'filler','filler' from t1 A CROSS JOIN t1 B;
 
280
insert into t2 select A.a + 10*B.a, 'filler','filler' from t1 A, t1 B;
281
281
flush status;
282
282
update t2 set a=3 where a=2;
283
283
show status like 'handler_read%';
345
345
Handler_read_rnd        #
346
346
Handler_read_rnd_next   #
347
347
UPDATE t1 SET user_id=null WHERE request_id=999999999999999999999999999999;
348
 
Warnings:
349
 
Warning 1264    Out of range value for column 'request_id' at row 1
350
 
Warning 1264    Out of range value for column 'request_id' at row 1
351
348
show status like '%Handler_read%';
352
349
Variable_name   Value
353
350
Handler_read_first      #