~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/auto_increment.result

Merged in changes. 
Edited a the comment test case so deal with our version bump.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
2
drop table if exists t2;
3
3
SET SQL_WARNINGS=1;
4
 
create TEMPORARY table t1 (a int not null auto_increment,b int, primary key (a)) engine=myisam auto_increment=3;
 
4
create table t1 (a int not null auto_increment,b int, primary key (a)) engine=myisam auto_increment=3;
5
5
insert into t1 values (1,1),(NULL,3),(NULL,4);
6
6
delete from t1 where a=4;
7
7
insert into t1 values (NULL,5),(NULL,6);
27
27
9       9       9
28
28
drop table t1;
29
29
create table t1 (
30
 
skey int NOT NULL auto_increment PRIMARY KEY,
 
30
skey tinyint unsigned NOT NULL auto_increment PRIMARY KEY,
31
31
sval char(20)
32
32
);
33
33
insert into t1 values (NULL, "hello");
41
41
1       1       1       hello
42
42
2       2       2       hey
43
43
drop table t1;
 
44
create table t1 (a char(10) not null, b int not null auto_increment, primary key(a,b));
 
45
insert into t1 values ("a",1),("b",2),("a",2),("c",1);
 
46
insert into t1 values ("a",NULL),("b",NULL),("c",NULL),("e",NULL);
 
47
insert into t1 (a) values ("a"),("b"),("c"),("d");
 
48
insert into t1 (a) values ('k'),('d');
 
49
insert into t1 (a) values ("a");
 
50
insert into t1 values ("d",last_insert_id());
 
51
select * from t1;
 
52
a       b
 
53
a       1
 
54
a       2
 
55
a       3
 
56
a       4
 
57
a       5
 
58
b       2
 
59
b       3
 
60
b       4
 
61
c       1
 
62
c       2
 
63
c       3
 
64
d       1
 
65
d       2
 
66
d       5
 
67
e       1
 
68
k       1
 
69
drop table t1;
 
70
create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ordid), index(ord,ordid));
 
71
insert into t1 (ordid,ord) values (NULL,'sdj'),(NULL,'sdj');
 
72
select * from t1;
 
73
ordid   ord
 
74
1       sdj
 
75
2       sdj
 
76
drop table t1;
 
77
create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ord,ordid));
 
78
insert into t1 values (NULL,'sdj'),(NULL,'sdj'),(NULL,"abc"),(NULL,'abc'),(NULL,'zzz'),(NULL,'sdj'),(NULL,'abc');
 
79
select * from t1;
 
80
ordid   ord
 
81
1       abc
 
82
2       abc
 
83
3       abc
 
84
1       sdj
 
85
2       sdj
 
86
3       sdj
 
87
1       zzz
 
88
drop table t1;
 
89
create table t1 (sid char(5), id int(2) NOT NULL auto_increment, key(sid,  id));
 
90
create table t2 (sid char(20), id int(2));
 
91
insert into t2 values ('skr',NULL),('skr',NULL),('test',NULL);
 
92
insert into t1 select * from t2;
 
93
select * from t1;
 
94
sid     id
 
95
skr     1
 
96
skr     2
 
97
test    1
 
98
drop table t1,t2;
44
99
create table t1 (a int not null primary key auto_increment);
45
100
insert into t1 values (0);
46
101
update t1 set a=0;
49
104
0
50
105
check table t1;
51
106
Table   Op      Msg_type        Msg_text
 
107
test.t1 check   warning Found row where the auto_increment column has the value 0
52
108
test.t1 check   status  OK
53
109
drop table t1;
54
110
create table t1 (a int not null auto_increment primary key);
64
120
1
65
121
2
66
122
drop table t1;
67
 
create temporary table t1 (a int not null auto_increment primary key) /*!40102 engine=MEMORY */;
 
123
create table t1 (a int not null auto_increment primary key) /*!40102 engine=heap */;
68
124
insert into t1 values (NULL);
69
125
insert into t1 values (-1);
70
126
select last_insert_id();
77
133
-1
78
134
2
79
135
drop table t1;
80
 
create table t1 (i int not null auto_increment, key (i));
81
 
insert into t1 set i = 254;
82
 
insert into t1 set i = null;
83
 
select last_insert_id();
84
 
last_insert_id()
85
 
255
86
 
insert into t1 set i = null;
87
 
select last_insert_id();
88
 
last_insert_id()
89
 
256
90
 
drop table t1;
91
 
create table t1 (i int not null auto_increment primary key, b int, unique (b));
 
136
create table t1 (i tinyint unsigned not null auto_increment primary key);
 
137
insert into t1 set i = 254;
 
138
insert into t1 set i = null;
 
139
select last_insert_id();
 
140
last_insert_id()
 
141
255
 
142
explain extended select last_insert_id();
 
143
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
 
144
1       SIMPLE  NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL    No tables used
 
145
Warnings:
 
146
Note    1003    select last_insert_id() AS `last_insert_id()`
 
147
insert into t1 set i = 254;
 
148
ERROR 23000: Duplicate entry '254' for key 'PRIMARY'
 
149
select last_insert_id();
 
150
last_insert_id()
 
151
255
 
152
insert into t1 set i = null;
 
153
ERROR 23000: Duplicate entry '255' for key 'PRIMARY'
 
154
select last_insert_id();
 
155
last_insert_id()
 
156
255
 
157
drop table t1;
 
158
create table t1 (i tinyint unsigned not null auto_increment, key (i));
 
159
insert into t1 set i = 254;
 
160
insert into t1 set i = null;
 
161
select last_insert_id();
 
162
last_insert_id()
 
163
255
 
164
insert into t1 set i = null;
 
165
Warnings:
 
166
Warning 1264    Out of range value for column 'i' at row 1
 
167
select last_insert_id();
 
168
last_insert_id()
 
169
255
 
170
drop table t1;
 
171
create table t1 (i tinyint unsigned not null auto_increment primary key, b int, unique (b));
92
172
insert into t1 values (NULL, 10);
93
173
select last_insert_id();
94
174
last_insert_id()
104
184
2
105
185
drop table t1;
106
186
create table t1(a int auto_increment,b int null,primary key(a));
 
187
SET SQL_MODE=NO_AUTO_VALUE_ON_ZERO;
107
188
insert into t1(a,b)values(NULL,1);
108
189
insert into t1(a,b)values(200,2);
109
190
insert into t1(a,b)values(0,3);
120
201
202     5
121
202
203     6
122
203
204     7
123
 
alter table t1 modify b int;
 
204
alter table t1 modify b mediumint;
124
205
select * from t1 order by b;
125
206
a       b
126
207
1       1
152
233
update t1 set a=NULL where b=6;
153
234
ERROR 23000: Column 'a' cannot be null
154
235
update t1 set a=300 where b=7;
 
236
SET SQL_MODE='';
155
237
insert into t1(a,b)values(NULL,8);
156
238
insert into t1(a,b)values(400,9);
157
239
insert into t1(a,b)values(0,10);
166
248
201     4
167
249
203     6
168
250
300     7
169
 
205     8
 
251
301     8
170
252
400     9
171
 
0       10
172
 
401     11
173
 
402     12
174
 
403     13
175
 
404     14
 
253
401     10
 
254
402     11
 
255
403     12
 
256
404     13
 
257
405     14
176
258
delete from t1 where a=0;
177
259
update t1 set a=0 where b=12;
178
260
select * from t1 order by b;
182
264
201     4
183
265
203     6
184
266
300     7
185
 
205     8
 
267
301     8
186
268
400     9
187
 
401     11
 
269
401     10
 
270
402     11
188
271
0       12
189
 
403     13
190
 
404     14
 
272
404     13
 
273
405     14
191
274
delete from t1 where a=0;
192
275
update t1 set a=NULL where b=13;
193
276
ERROR 23000: Column 'a' cannot be null
199
282
201     4
200
283
203     6
201
284
300     7
202
 
205     8
 
285
301     8
203
286
400     9
204
 
401     11
205
 
403     13
 
287
401     10
 
288
402     11
 
289
404     13
206
290
500     14
207
291
drop table t1;
208
292
create table t1 (a bigint);
219
303
create table t1 (a bigint);
220
304
insert into t1 values (1), (2), (3), (0), (0);
221
305
alter table t1 modify a bigint not null auto_increment primary key;
222
 
ERROR 23000: ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '0' for key 'PRIMARY'
223
306
select * from t1;
224
307
a
225
308
1
226
309
2
227
310
3
228
 
0
229
 
0
 
311
4
 
312
5
230
313
drop table t1;
231
314
create table t1 (a bigint);
232
315
insert into t1 values (0), (1), (2), (3);
 
316
set sql_mode=NO_AUTO_VALUE_ON_ZERO;
233
317
alter table t1 modify a bigint not null auto_increment primary key;
 
318
set sql_mode= '';
234
319
select * from t1;
235
320
a
236
321
0
239
324
3
240
325
drop table t1;
241
326
create table t1 (a int auto_increment primary key , b int null);
 
327
set sql_mode=NO_AUTO_VALUE_ON_ZERO;
242
328
insert into t1 values (0,1),(1,2),(2,3);
243
329
select * from t1;
244
330
a       b
245
331
0       1
246
332
1       2
247
333
2       3
 
334
set sql_mode= '';
248
335
alter table t1 modify b varchar(255);
249
336
insert into t1 values (0,4);
250
 
ERROR 23000: Duplicate entry '0' for key 'PRIMARY'
251
337
select * from t1;
252
338
a       b
253
339
0       1
254
340
1       2
255
341
2       3
 
342
3       4
256
343
drop table t1;
257
344
CREATE TABLE t1 ( a INT AUTO_INCREMENT, b BLOB, PRIMARY KEY (a,b(10)));
258
345
INSERT INTO t1 (b) VALUES ('aaaa');
268
355
Table   Op      Msg_type        Msg_text
269
356
test.t1 check   status  OK
270
357
DROP TABLE IF EXISTS t1;
271
 
CREATE TABLE t1 (
 
358
CREATE TABLE `t1` (
272
359
t1_name VARCHAR(255) DEFAULT NULL,
273
 
t1_id INT not null AUTO_INCREMENT,
 
360
t1_id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
274
361
KEY (t1_name),
275
362
PRIMARY KEY (t1_id)
276
363
) AUTO_INCREMENT = 1000;
277
 
Warnings:
278
 
Warning 1071    Specified key was too long; max key length is 767 bytes
279
364
INSERT INTO t1 (t1_name) VALUES('MySQL');
280
365
INSERT INTO t1 (t1_name) VALUES('MySQL');
281
366
INSERT INTO t1 (t1_name) VALUES('MySQL');
288
373
Table   Create Table
289
374
t1      CREATE TABLE `t1` (
290
375
  `t1_name` varchar(255) DEFAULT NULL,
291
 
  `t1_id` int NOT NULL AUTO_INCREMENT,
 
376
  `t1_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
292
377
  PRIMARY KEY (`t1_id`),
293
 
  KEY `t1_name` (`t1_name`(191))
294
 
) ENGINE=InnoDB
 
378
  KEY `t1_name` (`t1_name`)
 
379
) ENGINE=MyISAM AUTO_INCREMENT=1003 DEFAULT CHARSET=latin1
295
380
DROP TABLE `t1`;
296
381
create table t1(a int not null auto_increment primary key);
297
382
create table t2(a int not null auto_increment primary key, t1a int);
316
401
9       3
317
402
drop table t1, t2;
318
403
End of 4.1 tests
319
 
CREATE TABLE t1 ( `a` int NOT NULL auto_increment, `b` int default NULL,PRIMARY KEY  (`a`),UNIQUE KEY `b` (`b`));
 
404
CREATE TABLE t1 ( `a` int(11) NOT NULL auto_increment, `b` int(11) default NULL,PRIMARY KEY  (`a`),UNIQUE KEY `b` (`b`));
320
405
insert into t1 (b) values (1);
321
406
replace into t1 (b) values (2), (1), (3);
322
407
select * from t1;
323
408
a       b
 
409
3       1
324
410
2       2
325
 
3       1
326
411
4       3
327
412
truncate table t1;
328
413
insert into t1 (b) values (1);
331
416
replace into t1 (b) values (3);
332
417
select * from t1;
333
418
a       b
 
419
3       1
334
420
2       2
335
 
3       1
336
421
4       3
337
422
drop table t1;
338
423
create table t1 (rowid int not null auto_increment, val int not null,primary
346
431
3       1
347
432
4       2
348
433
drop table t1;
349
 
CREATE TABLE t1 (t1 INT PRIMARY KEY, t2 INT);
 
434
create table t1 (a int not null auto_increment primary key, val int);
 
435
insert into t1 (val) values (1);
 
436
update t1 set a=2 where a=1;
 
437
insert into t1 (val) values (1);
 
438
select * from t1;
 
439
a       val
 
440
2       1
 
441
3       1
 
442
drop table t1;
 
443
CREATE TABLE t1 (t1 INT(10) PRIMARY KEY, t2 INT(10));
350
444
INSERT INTO t1 VALUES(0, 0);
351
445
INSERT INTO t1 VALUES(1, 1);
352
 
ALTER TABLE t1 CHANGE t1 t1 INT auto_increment;
353
 
INSERT INTO t1 VALUES(0,0);
354
 
ERROR 23000: Duplicate entry '0' for key 'PRIMARY'
 
446
ALTER TABLE t1 CHANGE t1 t1 INT(10) auto_increment;
 
447
ERROR 23000: ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '1' for key 'PRIMARY'
355
448
DROP TABLE t1;
356
449
create table t1 (a int primary key auto_increment, b int, c int, d timestamp default current_timestamp, unique(b),unique(c));
357
450
insert into t1 values(null,1,1,now());