~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/update.test

  • Committer: Andy Lester
  • Date: 2008-08-09 05:23:39 UTC
  • mto: (266.1.29 use-replace-funcs)
  • mto: This revision was merged to the branch mainline in revision 287.
  • Revision ID: andy@petdance.com-20080809052339-iafoesszmesweq6b
use NULL, not 0

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
# Some strange updates to test some otherwise unused code
15
15
update t1 set a=a+100 where a=1 and a=2;
16
 
--error ER_BAD_FIELD_ERROR
 
16
--error 1054
17
17
update t1 set a=b+100 where a=1 and a=2; 
18
 
--error ER_BAD_FIELD_ERROR
 
18
--error 1054
19
19
update t1 set a=b+100 where c=1 and a=2; 
20
 
--error ER_BAD_FIELD_ERROR
 
20
--error 1054
21
21
update t1 set d=a+100 where a=1;
22
22
select * from t1;
23
23
drop table t1;
24
24
 
25
25
CREATE TABLE t1
26
26
 (
27
 
 place_id int NOT NULL,
28
 
 shows int DEFAULT '0' NOT NULL,
29
 
 ishows int DEFAULT '0' NOT NULL,
30
 
 ushows int DEFAULT '0' NOT NULL,
31
 
 clicks int DEFAULT '0' NOT NULL,
32
 
 iclicks int DEFAULT '0' NOT NULL,
33
 
 uclicks int DEFAULT '0' NOT NULL,
 
27
 place_id int unsigned NOT NULL,
 
28
 shows int unsigned DEFAULT '0' NOT NULL,
 
29
 ishows int unsigned DEFAULT '0' NOT NULL,
 
30
 ushows int unsigned DEFAULT '0' NOT NULL,
 
31
 clicks int unsigned DEFAULT '0' NOT NULL,
 
32
 iclicks int unsigned DEFAULT '0' NOT NULL,
 
33
 uclicks int unsigned DEFAULT '0' NOT NULL,
34
34
 ts timestamp,
35
35
 PRIMARY KEY (place_id,ts)
36
36
 );
45
45
# Test bug with update reported by Jan Legenhausen
46
46
#
47
47
 
48
 
CREATE TEMPORARY TABLE t1 (
49
 
  lfdnr int NOT NULL default '0',
50
 
  ticket int NOT NULL default '0',
 
48
CREATE TABLE t1 (
 
49
  lfdnr int unsigned NOT NULL default '0',
 
50
  ticket int unsigned NOT NULL default '0',
51
51
  client varchar(255) NOT NULL default '',
52
52
  replyto varchar(255) NOT NULL default '',
53
53
  subject varchar(100) NOT NULL default '',
54
 
  timestamp_arg int NOT NULL default '0',
 
54
  timestamp int unsigned NOT NULL default '0',
55
55
  tstamp timestamp NOT NULL,
56
56
  status int NOT NULL default '0',
57
57
  type varchar(15) NOT NULL default '',
58
 
  assignment int NOT NULL default '0',
59
 
  fupcount int NOT NULL default '0',
60
 
  parent int NOT NULL default '0',
61
 
  activity int NOT NULL default '0',
62
 
  priority int NOT NULL default '1',
 
58
  assignment int unsigned NOT NULL default '0',
 
59
  fupcount int unsigned NOT NULL default '0',
 
60
  parent int unsigned NOT NULL default '0',
 
61
  activity int unsigned NOT NULL default '0',
 
62
  priority tinyint unsigned NOT NULL default '1',
63
63
  cc varchar(255) NOT NULL default '',
64
64
  bcc varchar(255) NOT NULL default '',
65
65
  body text NOT NULL,
66
66
  comment text,
67
67
  header text,
68
68
  PRIMARY KEY  (lfdnr),
69
 
  KEY k1 (timestamp_arg),
 
69
  KEY k1 (timestamp),
70
70
  KEY k2 (type),
71
71
  KEY k3 (parent),
72
72
  KEY k4 (assignment),
75
75
 
76
76
INSERT INTO t1 VALUES (773,773,'','','',980257344,20010318180652,0,'Open',10,0,0,0,1,'','','','','');
77
77
 
78
 
alter table t1 change lfdnr lfdnr int not null auto_increment;
 
78
alter table t1 change lfdnr lfdnr int unsigned not null auto_increment;
79
79
update t1 set status=1 where type='Open';
80
80
select status from t1;
81
81
drop table t1;
102
102
# Test with limit (Bug #393)
103
103
#
104
104
 
105
 
CREATE TEMPORARY TABLE t1 (
106
 
   `id_param` int NOT NULL default '0',
 
105
CREATE TABLE t1 (
 
106
   `id_param` smallint unsigned NOT NULL default '0',
107
107
   `nom_option` char(40) NOT NULL default '',
108
 
   `valid` int NOT NULL default '0',
 
108
   `valid` tinyint NOT NULL default '0',
109
109
   KEY `id_param` (`id_param`,`nom_option`)
110
110
 ) ENGINE=MyISAM;
111
111
 
116
116
drop table t1;
117
117
 
118
118
#
 
119
# Multi table update test from bugs
 
120
#
 
121
 
 
122
create table t1 (F1 VARCHAR(30), F2 VARCHAR(30), F3 VARCHAR(30), cnt int, groupid int, KEY groupid_index (groupid));
 
123
 
 
124
insert into t1 (F1,F2,F3,cnt,groupid) values ('0','0','0',1,6),
 
125
('0','1','2',1,5), ('0','2','0',1,3), ('1','0','1',1,2),
 
126
('1','2','1',1,1), ('1','2','2',1,1), ('2','0','1',2,4),
 
127
('2','2','0',1,7);
 
128
delete from m1 using t1 m1,t1 m2 where m1.groupid=m2.groupid and (m1.cnt < m2.cnt or m1.cnt=m2.cnt and m1.F3>m2.F3);
 
129
select * from t1;
 
130
drop table t1;
 
131
 
 
132
#
 
133
# Bug #6054 
 
134
#
 
135
create table t1 (c1 int, c2 char(6), c3 int);
 
136
create table t2 (c1 int, c2 char(6));
 
137
insert into t1 values (1, "t1c2-1", 10), (2, "t1c2-2", 20);
 
138
update t1 left join t2 on t1.c1 = t2.c1 set t2.c2 = "t2c2-1";
 
139
update t1 left join t2 on t1.c1 = t2.c1 set t2.c2 = "t2c2-1" where t1.c3 = 10;
 
140
drop table t1, t2;
 
141
 
 
142
#
119
143
# Bug #8057
120
144
#
121
145
create table t1 (id int not null auto_increment primary key, id_str varchar(32));
134
158
select * from t1;
135
159
drop table t1;
136
160
 
 
161
# BUG#9103 "Erroneous data truncation warnings on multi-table updates"
 
162
create table t1 (a int, b varchar(10), key b(b(5))) engine=myisam;
 
163
create table t2 (a int, b varchar(10)) engine=myisam;
 
164
insert into t1 values ( 1, 'abcd1e');
 
165
insert into t1 values ( 2, 'abcd2e');
 
166
insert into t2 values ( 1, 'abcd1e');
 
167
insert into t2 values ( 2, 'abcd2e');
 
168
analyze table t1,t2;
 
169
update t1, t2 set t1.a = t2.a where t2.b = t1.b;
 
170
show warnings;
 
171
drop table t1, t2;
 
172
 
137
173
#
138
174
# Bug #11868 Update with subquery with ref built with a key from the updated
139
175
#            table crashes server
152
188
#
153
189
create table t1(f1 int);
154
190
select DATABASE();
155
 
--error ER_INVALID_GROUP_FUNC_USE
 
191
--error 1111
156
192
update t1 set f1=1 where count(*)=1;
157
193
select DATABASE();
158
 
--error ER_INVALID_GROUP_FUNC_USE
 
194
--error 1111
159
195
delete from t1 where count(*)=1;
160
196
drop table t1;
161
197
 
165
201
 
166
202
flush status;
167
203
select a from t1 order by a limit 1;
168
 
--replace_column 2 #
169
204
show status like 'handler_read%';
170
205
 
171
206
flush status;
172
207
update t1 set a=9999 order by a limit 1;
173
208
update t1 set b=9999 order by a limit 1;
174
 
--replace_column 2 #
175
209
show status like 'handler_read%';
176
210
 
177
211
flush status;
178
212
delete from t1 order by a limit 1;
179
 
--replace_column 2 #
180
213
show status like 'handler_read%';
181
214
 
182
215
flush status;
183
216
delete from t1 order by a desc limit 1;
184
 
--replace_column 2 #
185
217
show status like 'handler_read%';
186
218
 
187
219
alter table t1 disable keys;
188
220
 
189
221
flush status;
190
222
delete from t1 order by a limit 1;
191
 
--replace_column 2 #
192
223
show status like 'handler_read%';
193
224
 
194
 
# PBXT: this select returns a different result to
195
 
# innodb because the 2 updates above change different rows
196
225
select * from t1;
197
226
update t1 set a=a+10,b=1 order by a limit 3;
198
227
update t1 set a=a+11,b=2 order by a limit 3;
204
233
#
205
234
# Bug#14186 select datefield is null not updated
206
235
#
207
 
create table t1 (f1 date NULL);
208
 
insert into t1 values('2000-01-01'),(NULL);
 
236
create table t1 (f1 date not null);
 
237
insert into t1 values('2000-01-01'),('0000-00-00');
209
238
update t1 set f1='2002-02-02' where f1 is null;
210
239
select * from t1;
211
240
drop table t1;
212
241
 
 
242
#
 
243
# Bug#15028 Multitable update returns different numbers of matched rows
 
244
#           depending on table order
 
245
create table t1 (f1 int);
 
246
create table t2 (f2 int);
 
247
insert into t1 values(1),(2);
 
248
insert into t2 values(1),(1);
 
249
--enable_info
 
250
update t1,t2 set f1=3,f2=3 where f1=f2 and f1=1;
 
251
--disable_info
 
252
update t2 set f2=1;
 
253
update t1 set f1=1 where f1=3;
 
254
--enable_info
 
255
update t2,t1 set f1=3,f2=3 where f1=f2 and f1=1;
 
256
--disable_info
 
257
drop table t1,t2;
 
258
 
 
259
 
213
260
# BUG#15935
214
261
create table t1 (a int);
215
262
insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
216
263
create table t2 (a int, filler1 char(200), filler2 char(200), key(a));
217
 
insert into t2 select A.a + 10*B.a, 'filler','filler' from t1 A CROSS JOIN t1 B;
 
264
insert into t2 select A.a + 10*B.a, 'filler','filler' from t1 A, t1 B;
218
265
flush status;
219
266
update t2 set a=3 where a=2;
220
 
--replace_column 2 #
221
267
show status like 'handler_read%';
222
268
drop table t1, t2;
223
269
 
233
279
# Bug#25126: Wrongly resolved field leads to a crash
234
280
#
235
281
create table t1(f1 int);
236
 
--error ER_BAD_FIELD_ERROR
 
282
--error 1054
237
283
update t1 set f2=1 order by f2;
238
284
drop table t1;
239
285
# End of 4.1 tests
243
289
#
244
290
 
245
291
CREATE TABLE t1 (
246
 
  request_id int NOT NULL auto_increment,
 
292
  request_id int unsigned NOT NULL auto_increment,
247
293
  user_id varchar(12) default NULL,
248
 
  time_stamp datetime,
 
294
  time_stamp datetime NOT NULL default '0000-00-00 00:00:00',
249
295
  ip_address varchar(15) default NULL,
250
296
  PRIMARY KEY (request_id),
251
297
  KEY user_id_2 (user_id,time_stamp)
263
309
 
264
310
flush status;
265
311
SELECT user_id FROM t1 WHERE request_id=9999999999999; 
266
 
--replace_column 2 #
267
312
show status like '%Handler_read%';
268
313
SELECT user_id FROM t1 WHERE request_id=999999999999999999999999999999; 
269
 
--replace_column 2 #
270
314
show status like '%Handler_read%';
271
315
UPDATE t1 SET user_id=null WHERE request_id=9999999999999;
272
 
--replace_column 2 #
273
316
show status like '%Handler_read%';
274
317
UPDATE t1 SET user_id=null WHERE request_id=999999999999999999999999999999;
275
 
--replace_column 2 #
276
318
show status like '%Handler_read%';
277
319
 
278
320
DROP TABLE t1;
314
356
 
315
357
# Create the test tables
316
358
create table t1 (id int, a int, key idx(a));
317
 
create table t2 (id int not null auto_increment primary key, a int);
 
359
create table t2 (id int unsigned not null auto_increment primary key, a int);
318
360
insert into t2(a) values(1),(2),(3),(4),(5),(6),(7),(8);
319
361
insert into t2(a) select a from t2; 
320
362
insert into t2(a) select a from t2;
322
364
update t2 set a=id;
323
365
insert into t1 select * from t2;
324
366
 
325
 
# PBXT: Rows changed are different here between InnoDB and PBXT
326
 
# because PBXT does not update the rows that are not modified!
327
 
# InnoDB seems to do this....
328
367
# Check that the number of matched rows is correct when the temporary
329
368
# table is small enough to not be converted to MyISAM
330
369
select count(*) from t1 join t2 on (t1.a=t2.a);
 
370
--enable_info
 
371
update t1 join t2 on (t1.a=t2.a) set t1.id=t2.id;
 
372
--disable_info
331
373
 
332
374
# Increase table sizes
333
375
insert into t2(a) select a from t2; 
338
380
# Check that the number of matched rows is correct when the temporary
339
381
# table has to be converted to MyISAM
340
382
select count(*) from t1 join t2 on (t1.a=t2.a);
 
383
--enable_info
 
384
update t1 join t2 on (t1.a=t2.a) set t1.id=t2.id;
 
385
--disable_info
341
386
 
342
387
# Check that the number of matched rows is correct when there are duplicate
343
388
# key errors
344
389
update t1 set a=1;
345
390
update t2 set a=1;
346
391
select count(*) from t1 join t2 on (t1.a=t2.a);
 
392
--enable_info
 
393
update t1 join t2 on (t1.a=t2.a) set t1.id=t2.id;
 
394
--disable_info
347
395
 
348
396
drop table t1,t2;
349
397
 
350
 
#
351
 
# Bug #439719: Drizzle crash when running random query generator
352
 
#
353
 
CREATE TABLE t1(col1 enum('a','b') NOT NULL, col2 enum('a','b') DEFAULT NULL, KEY col2 (col2));
354
 
UPDATE t1 SET col1 = "crash" WHERE col2 = now() ;
355
 
 
356
398
connection default;
357
399
disconnect con1;
358
400
 
359
 
drop table t1;
360
401
--echo End of 5.0 tests