~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
#######################################################################
2
#                                                                     #
3
# Please, DO NOT TOUCH this file as well as the innodb.result file.   #
4
# These files are to be modified ONLY BY INNOBASE guys.               #
5
#                                                                     #
6
# Use innodb_mysql.[test|result] files instead.                       #
7
#                                                                     #
8
# If nevertheless you need to make some changes here, please, forward #
9
# your commit message To: dev@innodb.com Cc: dev-innodb@mysql.com     #
10
# (otherwise your changes may be erased).                             #
11
#                                                                     #
12
#######################################################################
13
14
-- source include/have_innodb.inc
15
16
#
17
# Small basic test with ignore
18
#
19
20
--disable_warnings
21
drop table if exists t1,t2,t3,t4;
22
drop database if exists mysqltest;
23
--enable_warnings
24
#set engine_condition_pushdown=0;
413.2.2 by Brian Aker
Removed UNSIGNED from parser.
25
create table t1 (id int not null auto_increment, code int not null, name char(20) not null, primary key (id), key (code), unique (name)) engine=innodb;
1 by brian
clean slate
26
27
insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David'), (2, 'Erik'), (3, 'Sasha'), (3, 'Jeremy'), (4, 'Matt');
28
select id, code, name from t1 order by id;
29
30
update ignore t1 set id = 8, name = 'Sinisa' where id < 3;
31
select id, code, name from t1 order by id;
32
update ignore t1 set id = id + 10, name = 'Ralph' where id < 4;
33
select id, code, name from t1 order by id;
34
35
drop table t1;
36
37
#
38
# A bit bigger test
39
# The 'replace_column' statements are needed because the cardinality calculated
40
# by innodb is not always the same between runs
41
#
42
43
CREATE TABLE t1 (
761 by Brian Aker
Innodb test fix.
44
  id int NOT NULL auto_increment,
45
  parent_id int DEFAULT '0' NOT NULL,
46
  level int DEFAULT '0' NOT NULL,
1 by brian
clean slate
47
  PRIMARY KEY (id),
48
  KEY parent_id (parent_id),
49
  KEY level (level)
50
) engine=innodb;
51
INSERT INTO t1 VALUES (1,0,0),(3,1,1),(4,1,1),(8,2,2),(9,2,2),(17,3,2),(22,4,2),(24,4,2),(28,5,2),(29,5,2),(30,5,2),(31,6,2),(32,6,2),(33,6,2),(203,7,2),(202,7,2),(20,3,2),(157,0,0),(193,5,2),(40,7,2),(2,1,1),(15,2,2),(6,1,1),(34,6,2),(35,6,2),(16,3,2),(7,1,1),(36,7,2),(18,3,2),(26,5,2),(27,5,2),(183,4,2),(38,7,2),(25,5,2),(37,7,2),(21,4,2),(19,3,2),(5,1,1),(179,5,2);
52
update t1 set parent_id=parent_id+100;
53
select * from t1 where parent_id=102;
54
update t1 set id=id+1000;
55
-- error ER_DUP_ENTRY,1022
56
update t1 set id=1024 where id=1009; 
57
select * from t1;
58
update ignore t1 set id=id+1; # This will change all rows
59
select * from t1;
60
update ignore t1 set id=1023 where id=1010;
61
select * from t1 where parent_id=102;
62
--replace_column 9 #
63
explain select level from t1 where level=1;
64
--replace_column 9 #
65
explain select level,id from t1 where level=1;
66
--replace_column 9 #
67
explain select level,id,parent_id from t1 where level=1;
68
select level,id from t1 where level=1;
69
select level,id,parent_id from t1 where level=1;
70
optimize table t1;
71
--replace_column 7 #
72
show keys from t1;
73
drop table t1;
74
75
#
76
# Test replace
77
#
78
79
CREATE TABLE t1 (
761 by Brian Aker
Innodb test fix.
80
  gesuchnr int DEFAULT '0' NOT NULL,
81
  benutzer_id int DEFAULT '0' NOT NULL,
1 by brian
clean slate
82
  PRIMARY KEY (gesuchnr,benutzer_id)
83
) engine=innodb;
84
85
replace into t1 (gesuchnr,benutzer_id) values (2,1);
86
replace into t1 (gesuchnr,benutzer_id) values (1,1);
87
replace into t1 (gesuchnr,benutzer_id) values (1,1);
88
select * from t1;
89
drop table t1;
90
91
#
92
# test delete using hidden_primary_key
93
#
94
95
create table t1 (a int) engine=innodb;
96
insert into t1 values (1), (2);
97
optimize table t1;
98
delete from t1 where a = 1;
99
select * from t1;
100
check table t1;
101
drop table t1;
102
103
create table t1 (a int,b varchar(20)) engine=innodb;
104
insert into t1 values (1,""), (2,"testing");
105
delete from t1 where a = 1;
106
select * from t1;
107
create index skr on t1 (a);
108
insert into t1 values (3,""), (4,"testing");
109
analyze table t1;
110
--replace_column 7 #
111
show keys from t1;
112
drop table t1;
113
114
115
# Test of reading on secondary key with may be null
116
117
create table t1 (a int,b varchar(20),key(a)) engine=innodb;
118
insert into t1 values (1,""), (2,"testing");
119
select * from t1 where a = 1;
120
drop table t1;
121
122
#
123
# Test rollback
124
#
125
126
create table t1 (n int not null primary key) engine=innodb;
127
set autocommit=0;
128
insert into t1 values (4);
129
rollback;
130
select n, "after rollback" from t1;
131
insert into t1 values (4);
132
commit;
133
select n, "after commit" from t1;
134
commit;
135
insert into t1 values (5);
136
-- error ER_DUP_ENTRY
137
insert into t1 values (4);
138
commit;
139
select n, "after commit" from t1;
140
set autocommit=1;
141
insert into t1 values (6);
142
-- error ER_DUP_ENTRY
143
insert into t1 values (4);
144
select n from t1;
145
set autocommit=0;
146
#
147
# savepoints
148
#
149
begin;
150
savepoint `my_savepoint`;
151
insert into t1 values (7);
152
savepoint `savept2`;
153
insert into t1 values (3);
154
select n from t1;
155
savepoint savept3;
156
rollback to savepoint savept2;
157
--error 1305
158
rollback to savepoint savept3;
159
rollback to savepoint savept2;
160
release savepoint `my_savepoint`;
161
select n from t1;
162
-- error 1305
163
rollback to savepoint `my_savepoint`;
164
--error 1305
165
rollback to savepoint savept2;
166
insert into t1 values (8);
167
savepoint sv;
168
commit;
169
savepoint sv;
170
set autocommit=1;
171
# nop
172
rollback;
173
drop table t1;
174
175
#
176
# Test for commit and FLUSH TABLES WITH READ LOCK
177
#
178
179
create table t1 (n int not null primary key) engine=innodb;
180
start transaction;
181
insert into t1 values (4);
182
flush tables with read lock;
183
#
184
# Current code can't handle a read lock in middle of transaction
185
#--error 1223;
186
commit;
187
unlock tables;
188
commit;
189
select * from t1;
190
drop table t1;
191
192
#
193
# Testing transactions
194
#
195
196
create table t1 ( id int NOT NULL PRIMARY KEY, nom varchar(64)) engine=innodb;
197
begin;
198
insert into t1 values(1,'hamdouni');
199
select id as afterbegin_id,nom as afterbegin_nom from t1;
200
rollback;
201
select id as afterrollback_id,nom as afterrollback_nom from t1;
202
set autocommit=0;
203
insert into t1 values(2,'mysql');
204
select id as afterautocommit0_id,nom as afterautocommit0_nom from t1;
205
rollback;
206
select id as afterrollback_id,nom as afterrollback_nom from t1;
207
set autocommit=1;
208
drop table t1;
209
210
#
211
# Simple not autocommit test
212
# 
213
214
CREATE TABLE t1 (id char(8) not null primary key, val int not null) engine=innodb;
215
insert into t1 values ('pippo', 12);
216
-- error ER_DUP_ENTRY
217
insert into t1 values ('pippo', 12); # Gives error
218
delete from t1;
219
delete from t1 where id = 'pippo';
220
select * from t1;
221
222
insert into t1 values ('pippo', 12);
223
set autocommit=0;
224
delete from t1;
225
rollback;
226
select * from t1;
227
delete from t1;
228
commit;
229
select * from t1;
230
drop table t1;
231
232
#
233
# Test of active transactions
234
#
235
236
create table t1 (a integer) engine=innodb;
237
start transaction;
238
rename table t1 to t2;
239
create table t1 (b integer) engine=innodb;
240
insert into t1 values (1);
241
rollback;
242
drop table t1;
243
rename table t2 to t1;
244
drop table t1;
245
set autocommit=1;
246
247
#
248
# The following simple tests failed at some point
249
#
250
251
CREATE TABLE t1 (ID INTEGER NOT NULL PRIMARY KEY, NAME VARCHAR(64)) ENGINE=innodb;
252
INSERT INTO t1 VALUES (1, 'Jochen');
253
select * from t1;
254
drop table t1;
255
256
CREATE TABLE t1 ( _userid VARCHAR(60) NOT NULL PRIMARY KEY) ENGINE=innodb;
257
set autocommit=0;
258
INSERT INTO t1  SET _userid='marc@anyware.co.uk';
259
COMMIT;
260
SELECT * FROM t1;
261
SELECT _userid FROM t1 WHERE _userid='marc@anyware.co.uk';
262
drop table t1;
263
set autocommit=1;
264
265
#
266
# Test when reading on part of unique key
267
#
268
CREATE TABLE t1 (
761 by Brian Aker
Innodb test fix.
269
  user_id int DEFAULT '0' NOT NULL,
1 by brian
clean slate
270
  name varchar(100),
271
  phone varchar(100),
272
  ref_email varchar(100) DEFAULT '' NOT NULL,
273
  detail varchar(200),
274
  PRIMARY KEY (user_id,ref_email)
275
)engine=innodb;
276
277
INSERT INTO t1 VALUES (10292,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10292,'shirish','2333604','shirish@yahoo.com','ddsds'),(10292,'sonali','323232','sonali@bolly.com','filmstar');
278
select * from t1 where user_id=10292;
279
INSERT INTO t1 VALUES (10291,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10293,'shirish','2333604','shirish@yahoo.com','ddsds');
280
select * from t1 where user_id=10292;
281
select * from t1 where user_id>=10292;
282
select * from t1 where user_id>10292;
283
select * from t1 where user_id<10292;
284
drop table t1;
285
286
#
287
# Test that keys are created in right order
288
#
289
290
CREATE TABLE t1 (a int not null, b int not null,c int not null,
291
key(a),primary key(a,b), unique(c),key(a),unique(b));
292
--replace_column 7 #
293
show index from t1;
294
drop table t1;
295
296
#
297
# Test of ALTER TABLE and innodb tables
298
#
299
300
create table t1 (col1 int not null, col2 char(4) not null, primary key(col1));
301
alter table t1 engine=innodb;
302
insert into t1 values ('1','1'),('5','2'),('2','3'),('3','4'),('4','4');
303
select * from t1;
304
update t1 set col2='7' where col1='4';
305
select * from t1;
306
alter table t1 add co3 int not null;
307
select * from t1;
308
update t1 set col2='9' where col1='2';
309
select * from t1;
310
drop table t1;
311
312
#
313
# INSERT INTO innodb tables
314
#
315
316
create table t1 (a int not null , b int, primary key (a)) engine = innodb;
1063.9.3 by Brian Aker
Partial fix for tests for tmp
317
create TEMPORARY table t2 (a int not null , b int, primary key (a)) engine = myisam;
1 by brian
clean slate
318
insert into t1 VALUES (1,3) , (2,3), (3,3);
319
select * from t1;
320
insert into t2 select * from t1;
321
select * from t2;
322
delete from t1 where b = 3;
323
select * from t1;
324
insert into t1 select * from t2;
325
select * from t1;
326
select * from t2;
327
drop table t1,t2;
328
329
#
330
# ORDER BY on not primary key
331
#
332
333
CREATE TABLE t1 (
334
  user_name varchar(12),
335
  password text,
336
  subscribed char(1),
761 by Brian Aker
Innodb test fix.
337
  user_id int DEFAULT '0' NOT NULL,
338
  quota bigint,
1 by brian
clean slate
339
  weight double,
340
  access_date date,
341
  approved datetime,
761 by Brian Aker
Innodb test fix.
342
  dummy_primary_key int NOT NULL auto_increment,
1 by brian
clean slate
343
  PRIMARY KEY (dummy_primary_key)
344
) ENGINE=innodb;
896.5.1 by Jay Pipes
Removes the TIME column type and related time functions.
345
INSERT INTO t1 VALUES ('user_0','somepassword','N',0,0,0,'2000-09-07','2000-09-07 23:06:59',1);
346
INSERT INTO t1 VALUES ('user_1','somepassword','Y',1,1,1,'2000-09-07','2000-09-07 23:06:59',2);
347
INSERT INTO t1 VALUES ('user_2','somepassword','N',2,2,1.4142135623731,'2000-09-07','2000-09-07 23:06:59',3);
348
INSERT INTO t1 VALUES ('user_3','somepassword','Y',3,3,1.7320508075689,'2000-09-07','2000-09-07 23:06:59',4);
349
INSERT INTO t1 VALUES ('user_4','somepassword','N',4,4,2,'2000-09-07','2000-09-07 23:06:59',5);
350
select  user_name, password , subscribed, user_id, quota, weight, access_date, approved, dummy_primary_key from t1 order by user_name;
1 by brian
clean slate
351
drop table t1;
352
353
#
354
# Testing of tables without primary keys
355
#
356
357
CREATE TABLE t1 (
761 by Brian Aker
Innodb test fix.
358
  id int NOT NULL auto_increment,
359
  parent_id int DEFAULT '0' NOT NULL,
360
  level int DEFAULT '0' NOT NULL,
1 by brian
clean slate
361
  KEY (id),
362
  KEY parent_id (parent_id),
363
  KEY level (level)
364
) engine=innodb;
365
INSERT INTO t1 VALUES (1,0,0),(3,1,1),(4,1,1),(8,2,2),(9,2,2),(17,3,2),(22,4,2),(24,4,2),(28,5,2),(29,5,2),(30,5,2),(31,6,2),(32,6,2),(33,6,2),(203,7,2),(202,7,2),(20,3,2),(157,0,0),(193,5,2),(40,7,2),(2,1,1),(15,2,2),(6,1,1),(34,6,2),(35,6,2),(16,3,2),(7,1,1),(36,7,2),(18,3,2),(26,5,2),(27,5,2),(183,4,2),(38,7,2),(25,5,2),(37,7,2),(21,4,2),(19,3,2),(5,1,1);
366
INSERT INTO t1 values (179,5,2);
367
update t1 set parent_id=parent_id+100;
368
select * from t1 where parent_id=102;
369
update t1 set id=id+1000;
370
update t1 set id=1024 where id=1009; 
371
select * from t1;
372
update ignore t1 set id=id+1; # This will change all rows
373
select * from t1;
374
update ignore t1 set id=1023 where id=1010;
375
select * from t1 where parent_id=102;
376
--replace_column 9 #
377
explain select level from t1 where level=1;
378
select level,id from t1 where level=1;
379
select level,id,parent_id from t1 where level=1;
380
select level,id from t1 where level=1 order by id;
381
delete from t1 where level=1;
382
select * from t1;
383
drop table t1;
384
385
#
386
# Test of index only reads
387
#
388
CREATE TABLE t1 (
389
   sca_code char(6) NOT NULL,
390
   cat_code char(6) NOT NULL,
391
   sca_desc varchar(50),
392
   lan_code char(2) NOT NULL,
393
   sca_pic varchar(100),
394
   sca_sdesc varchar(50),
395
   sca_sch_desc varchar(16),
396
   PRIMARY KEY (sca_code, cat_code, lan_code),
397
   INDEX sca_pic (sca_pic)
398
) engine = innodb ;
399
400
INSERT INTO t1 ( sca_code, cat_code, sca_desc, lan_code, sca_pic, sca_sdesc, sca_sch_desc) VALUES ( 'PD', 'J', 'PENDANT', 'EN', NULL, NULL, 'PENDANT'),( 'RI', 'J', 'RING', 'EN', NULL, NULL, 'RING'),( 'QQ', 'N', 'RING', 'EN', 'not null', NULL, 'RING');
401
select count(*) from t1 where sca_code = 'PD';
402
select count(*) from t1 where sca_code <= 'PD';
403
select count(*) from t1 where sca_pic is null;
404
alter table t1 drop index sca_pic, add index sca_pic (cat_code, sca_pic);
405
select count(*) from t1 where sca_code='PD' and sca_pic is null;
406
select count(*) from t1 where cat_code='E';
407
alter table t1 drop index sca_pic, add index (sca_pic, cat_code);
408
select count(*) from t1 where sca_code='PD' and sca_pic is null;
409
select count(*) from t1 where sca_pic >= 'n';
410
select sca_pic from t1 where sca_pic is null;
411
update t1 set sca_pic="test" where sca_pic is null;
412
delete from t1 where sca_code='pd';
413
drop table t1;
414
415
#
416
# Test of opening table twice and timestamps
417
#
418
set @a:=now();
419
CREATE TABLE t1 (a int not null, b timestamp not null, primary key (a)) engine=innodb;
420
insert into t1 (a) values(1),(2),(3);
421
select t1.a from t1 natural join t1 as t2 where t1.b >= @a order by t1.a;
422
select a from t1 natural join t1 as t2 where b >= @a order by a;
423
update t1 set a=5 where a=1;
424
select a from t1;
425
drop table t1;
426
427
#
428
# Test with variable length primary key
429
#
430
create table t1 (a varchar(100) not null, primary key(a), b int not null) engine=innodb;
431
insert into t1 values("hello",1),("world",2);
432
select * from t1 order by b desc;
433
optimize table t1;
434
--replace_column 7 #
435
show keys from t1;
436
drop table t1;
437
438
#
439
# Test of create index with NULL columns
440
#
441
create table t1 (i int, j int ) ENGINE=innodb;
442
insert into t1 values (1,2);
443
select * from t1 where i=1 and j=2;
444
create index ax1 on t1 (i,j);
445
select * from t1 where i=1 and j=2;
446
drop table t1;
447
448
#
449
# Test min-max optimization
450
#
451
452
CREATE TABLE t1 (
761 by Brian Aker
Innodb test fix.
453
  a int NOT NULL,
454
  b int NOT NULL,
1 by brian
clean slate
455
  UNIQUE (a, b)
456
) ENGINE = innodb;
457
 
458
INSERT INTO t1 VALUES (1, 1);
459
SELECT MIN(B),MAX(b) FROM t1 WHERE t1.a = 1;
460
drop table t1;
461
462
#
463
# Test INSERT DELAYED
464
#
465
413.2.2 by Brian Aker
Removed UNSIGNED from parser.
466
CREATE TABLE t1 (a int NOT NULL) engine=innodb;
1 by brian
clean slate
467
# Can't test this in 3.23
468
# INSERT DELAYED INTO t1 VALUES (1);
469
INSERT INTO t1 VALUES (1);
470
SELECT * FROM t1;
471
DROP TABLE t1;
472
473
474
#
475
# Crash when using many tables (Test case by Jeremy D Zawodny)
476
#
477
478
create table t1 (a int  primary key,b int, c int, d int, e int, f int, g int, h int, i int, j int, k int, l int, m int, n int, o int, p int, q int, r int, s int, t int, u int, v int, w int, x int, y int, z int, a1 int, a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int, b1 int, b2 int, b3 int, b4 int, b5 int, b6 int) engine = innodb;
479
insert into t1 values (1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1);
480
--replace_column 9 #
481
explain select * from t1 where a > 0 and a < 50;
482
drop table t1;
483
484
#
485
# Test prefix key
486
#
487
create table t1 (a char(20), unique (a(5))) engine=innodb;
488
drop table t1;
489
create table t1 (a char(20), index (a(5))) engine=innodb;
490
show create table t1;
491
drop table t1;
492
493
#
494
# Test using temporary table and auto_increment
495
#
496
497
create temporary table t1 (a int not null auto_increment, primary key(a)) engine=innodb;
498
insert into t1 values (NULL),(NULL),(NULL);
499
delete from t1 where a=3;
500
insert into t1 values (NULL);
501
select * from t1;
502
alter table t1 add b int;
503
select * from t1;
504
drop table t1;
505
506
#Slashdot bug
761 by Brian Aker
Innodb test fix.
507
## Heikki had nevered considered the possibility of a second key that could
508
## be used as a primary key for replace. This is from the table that
509
## generates topics and "vars"  -Brian
1 by brian
clean slate
510
create table t1
511
 (
512
  id int auto_increment primary key,
513
  name varchar(32) not null,
514
  value text not null,
515
  uid int not null,
516
  unique key(name,uid)
517
 ) engine=innodb;
518
insert into t1 values (1,'one','one value',101),
519
 (2,'two','two value',102),(3,'three','three value',103);
520
replace into t1 (value,name,uid) values ('other value','two',102);
521
delete from t1 where uid=102;
522
replace into t1 (value,name,uid) values ('other value','two',102);
523
replace into t1 (value,name,uid) values ('other value','two',102);
524
select * from t1;
525
drop table t1;
526
527
#
528
# Test DROP DATABASE
529
#
530
531
create database mysqltest;
532
create table mysqltest.t1 (a int not null) engine= innodb;
533
insert into mysqltest.t1 values(1);
1063.9.3 by Brian Aker
Partial fix for tests for tmp
534
create TEMPORARY table mysqltest.t2 (a int not null) engine= myisam;
1 by brian
clean slate
535
insert into mysqltest.t2 values(1);
1106.3.1 by Brian Aker
Heap is now tmp only table
536
create temporary table mysqltest.t3 (a int not null) engine= heap;
1 by brian
clean slate
537
insert into mysqltest.t3 values(1);
538
commit;
539
drop database mysqltest;
540
# Don't check error message
541
--error 1049
542
show tables from mysqltest;
543
544
#
545
# Test truncate table with and without auto_commit
546
#
547
548
set autocommit=0;
549
create table t1 (a int not null) engine= innodb;
550
insert into t1 values(1),(2);
551
truncate table t1;
552
commit;
553
truncate table t1;
554
truncate table t1;
555
select * from t1;
556
insert into t1 values(1),(2);
557
delete from t1;
558
select * from t1;
559
commit;
560
drop table t1;
561
set autocommit=1;
562
563
create table t1 (a int not null) engine= innodb;
564
insert into t1 values(1),(2);
565
truncate table t1;
566
insert into t1 values(1),(2);
567
select * from t1;
568
truncate table t1;
569
insert into t1 values(1),(2);
570
delete from t1;
571
select * from t1;
572
drop table t1;
573
574
#
575
# Test of how ORDER BY works when doing it on the whole table
576
#
577
578
create table t1 (a int not null, b int not null, c int not null, primary key (a),key(b)) engine=innodb;
579
insert into t1 values (3,3,3),(1,1,1),(2,2,2),(4,4,4);
580
--replace_column 9 #
581
explain select * from t1 order by a;
582
--replace_column 9 #
583
explain select * from t1 order by b;
584
--replace_column 9 #
585
explain select * from t1 order by c;
586
--replace_column 9 #
587
explain select a from t1 order by a;
588
--replace_column 9 #
589
explain select b from t1 order by b;
590
--replace_column 9 #
591
explain select a,b from t1 order by b;
592
--replace_column 9 #
593
explain select a,b from t1;
594
--replace_column 9 #
595
explain select a,b,c from t1;
596
drop table t1;
597
598
#
599
# Check describe
600
#
601
602
create table t1 (t int not null default 1, key (t)) engine=innodb;
603
desc t1;
604
drop table t1;
605
606
#
607
# A simple test with some isolation levels
608
# TODO: Make this into a test using replication to really test how
609
# this works.
610
#
611
413.2.2 by Brian Aker
Removed UNSIGNED from parser.
612
create table t1 (id int not null auto_increment, code int not null, name char(20) not null, primary key (id), key (code), unique (name)) engine=innodb;
1 by brian
clean slate
613
614
BEGIN;
615
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
616
SELECT @@tx_isolation,@@global.tx_isolation;
617
insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David');
618
select id, code, name from t1 order by id;
619
COMMIT;
620
621
BEGIN;
622
SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;
623
insert into t1 (code, name) values (2, 'Erik'), (3, 'Sasha');
624
select id, code, name from t1 order by id;
625
COMMIT;
626
627
BEGIN;
628
SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
629
insert into t1 (code, name) values (3, 'Jeremy'), (4, 'Matt');
630
select id, code, name from t1 order by id;
631
COMMIT;
632
DROP TABLE t1;
633
634
#
635
# Testing of IFNULL
636
#
637
create table t1 (a int, b int) engine=innodb;
638
insert into t1 values(20,null);
639
select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
640
t2.b=t3.a;
641
select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
642
t2.b=t3.a order by 1;
643
insert into t1 values(10,null);
644
select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
645
t2.b=t3.a order by 1;
646
drop table t1;
647
648
#
649
# Test of read_through not existing const_table
650
#
651
1063.9.3 by Brian Aker
Partial fix for tests for tmp
652
create TEMPORARY table t1 (a varchar(10) not null) engine=myisam;
1 by brian
clean slate
653
create table t2 (b varchar(10) not null unique) engine=innodb;
654
select t1.a from t1,t2 where t1.a=t2.b;
655
drop table t1,t2;
656
create table t1 (a int not null, b int, primary key (a)) engine = innodb;
657
create table t2 (a int not null, b int, primary key (a)) engine = innodb;
658
insert into t1 values (10, 20);
659
insert into t2 values (10, 20);
660
drop table t1,t2;
661
662
#
663
# Test of range_optimizer
664
#
665
666
set autocommit=0;
667
668
CREATE TABLE t1 (id CHAR(15) NOT NULL, value CHAR(40) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
669
670
CREATE TABLE t2 (id CHAR(15) NOT NULL, value CHAR(40) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
671
672
CREATE TABLE t3 (id1 CHAR(15) NOT NULL, id2 CHAR(15) NOT NULL, PRIMARY KEY(id1, id2)) ENGINE=InnoDB;
673
674
INSERT INTO t3 VALUES("my-test-1", "my-test-2");
675
COMMIT;
676
677
INSERT INTO t1 VALUES("this-key", "will disappear");
678
INSERT INTO t2 VALUES("this-key", "will also disappear");
679
DELETE FROM t3 WHERE id1="my-test-1";
680
681
SELECT * FROM t1;
682
SELECT * FROM t2;
683
SELECT * FROM t3;
684
ROLLBACK;
685
686
SELECT * FROM t1;
687
SELECT * FROM t2;
688
SELECT * FROM t3;
689
SELECT * FROM t3 WHERE id1="my-test-1" LOCK IN SHARE MODE;
690
COMMIT;
691
set autocommit=1;
692
DROP TABLE t1,t2,t3;
693
694
#
695
# Check update with conflicting key
696
#
697
698
CREATE TABLE t1 (a int not null primary key, b int not null, unique (b)) engine=innodb;
699
INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
700
# We need the a < 1000 test here to quard against the halloween problems
701
UPDATE t1 set a=a+100 where b between 2 and 3 and a < 1000;
702
SELECT * from t1;
703
drop table t1;
704
705
#
706
# Test that MySQL priorities clustered indexes
707
#
708
create table t1 (a int not null auto_increment primary key, b int, c int, key(c)) engine=innodb;
709
create table t2 (a int not null auto_increment primary key, b int);
710
insert into t1 (b) values (null),(null),(null),(null),(null),(null),(null);
711
insert into t2 (a) select b from t1;
712
insert into t1 (b) select b from t2;
713
insert into t2 (a) select b from t1;
714
insert into t1 (a) select b from t2;
715
insert into t2 (a) select b from t1;
716
insert into t1 (a) select b from t2;
717
insert into t2 (a) select b from t1;
718
insert into t1 (a) select b from t2;
719
insert into t2 (a) select b from t1;
720
insert into t1 (a) select b from t2;
721
select count(*) from t1;
722
--replace_column 9 #
723
explain select * from t1 where c between 1 and 2500;
724
update t1 set c=a;
725
--replace_column 9 #
726
explain select * from t1 where c between 1 and 2500;
727
drop table t1,t2;
728
729
#
730
# Test of UPDATE ... ORDER BY
731
#
732
733
create table t1 (id int primary key auto_increment, fk int, index index_fk (fk)) engine=innodb;
734
735
insert into t1 (id) values (null),(null),(null),(null),(null);
736
update t1 set fk=69 where fk is null order by id limit 1;
737
SELECT * from t1;
738
drop table t1;
739
740
create table t1 (a int not null, b int not null, key (a));
741
insert into t1 values (1,1),(1,2),(1,3),(3,1),(3,2),(3,3),(3,1),(3,2),(3,3),(2,1),(2,2),(2,3);
742
SET @tmp=0;
743
update t1 set b=(@tmp:=@tmp+1) order by a;
744
update t1 set b=99 where a=1 order by b asc limit 1;
745
update t1 set b=100 where a=1 order by b desc limit 2;
746
update t1 set a=a+10+b where a=1 order by b;
747
select * from t1 order by a,b;
748
drop table t1;
749
750
#
751
# test autoincrement with TRUNCATE
752
#
753
754
SET AUTOCOMMIT=1;
755
create table t1 (a integer auto_increment primary key) engine=innodb;
756
insert into t1 (a) values (NULL),(NULL);
757
truncate table t1;
758
insert into t1 (a) values (NULL),(NULL);
759
SELECT * from t1;
760
drop table t1;
761
762
#
763
# Test dictionary handling with spaceand quoting
764
#
765
766
CREATE TABLE t1 (`id 1` INT NOT NULL, PRIMARY KEY (`id 1`)) ENGINE=INNODB;
767
CREATE TABLE t2 (id INT PRIMARY KEY, t1_id INT, INDEX par_ind (t1_id), FOREIGN KEY (`t1_id`) REFERENCES `t1`(`id 1`)  ON DELETE CASCADE ) ENGINE=INNODB;
768
#show create table t2;
769
drop table t2,t1;
770
771
#
772
# test for recursion depth limit
773
#
774
create table t1(
775
	id int primary key,
776
	pid int,
777
	index(pid),
778
	foreign key(pid) references t1(id) on delete cascade) engine=innodb;
779
insert into t1 values(0,0),(1,0),(2,1),(3,2),(4,3),(5,4),(6,5),(7,6),
780
	(8,7),(9,8),(10,9),(11,10),(12,11),(13,12),(14,13),(15,14);
781
-- error 1451
782
delete from t1 where id=0;
783
delete from t1 where id=15;
784
delete from t1 where id=0;
785
786
drop table t1;
787
788
#
789
# Test timestamps
790
#
791
761 by Brian Aker
Innodb test fix.
792
CREATE TABLE t1 (col1 int) ENGINE=InnoDB;
793
CREATE TABLE t2 (col1 int, stamp TIMESTAMP,INDEX stamp_idx (stamp)) ENGINE=InnoDB;
1 by brian
clean slate
794
insert into t1 values (1),(2),(3);
795
# Note that timestamp 3 is wrong
761 by Brian Aker
Innodb test fix.
796
insert into t2 values (1, 20020204110000),(2, 20020204110001),(4,20020204110002 ),(5,20020204110003);
1 by brian
clean slate
797
SELECT col1 FROM t1 UNION SELECT col1 FROM t2 WHERE stamp <
798
'20020204120000' GROUP BY col1;
799
drop table t1,t2;
800
801
#
802
# Test by Francois MASUREL
803
#
804
805
CREATE TABLE t1 (
761 by Brian Aker
Innodb test fix.
806
  `id` int NOT NULL auto_increment,
807
  `id_object` int default '0',
808
  `id_version` int NOT NULL default '1',
1 by brian
clean slate
809
  `label` varchar(100) NOT NULL default '',
810
  `description` text,
811
  PRIMARY KEY  (`id`),
812
  KEY `id_object` (`id_object`),
813
  KEY `id_version` (`id_version`)
814
) ENGINE=InnoDB;
815
816
INSERT INTO t1 VALUES("6", "3382", "9", "Test", NULL), ("7", "102", "5", "Le Pekin (Test)", NULL),("584", "1794", "4", "Test de resto", NULL),("837", "1822", "6", "Test 3", NULL),("1119", "3524", "1", "Societe Test", NULL),("1122", "3525", "1", "Fournisseur Test", NULL);
817
818
CREATE TABLE t2 (
761 by Brian Aker
Innodb test fix.
819
  `id` int NOT NULL auto_increment,
820
  `id_version` int NOT NULL default '1',
1 by brian
clean slate
821
  PRIMARY KEY  (`id`),
822
  KEY `id_version` (`id_version`)
823
) ENGINE=InnoDB;
824
825
INSERT INTO t2 VALUES("3524", "1"),("3525", "1"),("1794", "4"),("102", "5"),("1822", "6"),("3382", "9");
826
827
SELECT t2.id, t1.`label` FROM t2 INNER JOIN
828
(SELECT t1.id_object as id_object FROM t1 WHERE t1.`label` LIKE '%test%') AS lbl 
829
ON (t2.id = lbl.id_object) INNER JOIN t1 ON (t2.id = t1.id_object);
830
drop table t1,t2;
831
1117.1.2 by Brian Aker
Remove CHECKSUM option in create table.
832
create TEMPORARY table t1 (a int, b varchar(200), c text not null)  engine=myisam;
833
create table t2 (a int, b varchar(200), c text not null) engine=innodb;
834
create table t3 (a int, b varchar(200), c text not null) engine=innodb;
1 by brian
clean slate
835
insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
836
insert t2 select * from t1;
837
insert t3 select * from t1;
838
checksum table t1, t2, t3, t4 quick;
839
checksum table t1, t2, t3, t4;
840
checksum table t1, t2, t3, t4 extended;
841
#show table status;
842
drop table t1,t2,t3;
843
844
#
845
# Test problem with refering to different fields in same table in UNION
846
# (Bug #2552)
847
#
848
create table t1 (id int,  name char(10) not null,  name2 char(10) not null) engine=innodb;
849
insert into t1 values(1,'first','fff'),(2,'second','sss'),(3,'third','ttt');
850
select trim(name2) from t1  union all  select trim(name) from t1 union all select trim(id) from t1;
851
drop table t1;
852
853
#
854
# Bug2160
855
#
856
create table t1 (a int) engine=innodb;
857
create table t2 like t1;
858
drop table t1,t2;
859
860
#
861
# Test of automaticly created foreign keys
862
#
863
761 by Brian Aker
Innodb test fix.
864
create table t1 (id int not null, id2 int not null, unique (id,id2)) engine=innodb;
865
create table t2 (id int not null, constraint t1_id_fk foreign key ( id ) references t1 (id)) engine = innodb;
1 by brian
clean slate
866
show create table t1;
867
show create table t2;
868
create index id on t2 (id);
869
show create table t2;
870
create index id2 on t2 (id);
871
show create table t2;
872
drop index id2 on t2;
873
--error 1025,1025
874
drop index id on t2;
875
show create table t2;
876
drop table t2;
877
761 by Brian Aker
Innodb test fix.
878
create table t2 (id int not null, id2 int not null, constraint t1_id_fk foreign key (id,id2) references t1 (id,id2)) engine = innodb;
1 by brian
clean slate
879
show create table t2;
880
create unique index id on t2 (id,id2);
881
show create table t2;
882
drop table t2;
883
884
# Check foreign key columns created in different order than key columns
761 by Brian Aker
Innodb test fix.
885
create table t2 (id int not null, id2 int not null, unique (id,id2),constraint t1_id_fk foreign key (id2,id) references t1 (id,id2)) engine = innodb;
886
show create table t2;
887
drop table t2;
888
889
create table t2 (id int not null, id2 int not null, unique (id,id2), constraint t1_id_fk foreign key (id) references t1 (id)) engine = innodb;
890
show create table t2;
891
drop table t2;
892
893
create table t2 (id int not null, id2 int not null, unique (id,id2),constraint t1_id_fk foreign key (id2,id) references t1 (id,id2)) engine = innodb;
894
show create table t2;
895
drop table t2;
896
897
create table t2 (id int not null auto_increment, id2 int not null, constraint t1_id_fk foreign key (id) references t1 (id), primary key (id), index (id,id2)) engine = innodb;
898
show create table t2;
899
drop table t2;
900
901
create table t2 (id int not null auto_increment, id2 int not null, constraint t1_id_fk foreign key (id) references t1 (id)) engine= innodb;
1 by brian
clean slate
902
show create table t2;
903
alter table t2 add index id_test (id), add index id_test2 (id,id2);
904
show create table t2;
905
drop table t2;
906
907
# Test error handling
908
909
# Embedded server doesn't chdir to data directory
910
--replace_result $MYSQLTEST_VARDIR . master-data/ ''
911
--error ER_WRONG_FK_DEF
761 by Brian Aker
Innodb test fix.
912
create table t2 (id int not null, id2 int not null, constraint t1_id_fk foreign key (id2,id) references t1 (id)) engine = innodb;
1 by brian
clean slate
913
914
# bug#3749
915
916
create table t2 (a int auto_increment primary key, b int, index(b), foreign key (b) references t1(id), unique(b)) engine=innodb;
917
show create table t2;
918
drop table t2;
919
create table t2 (a int auto_increment primary key, b int, foreign key (b) references t1(id), foreign key (b) references t1(id), unique(b)) engine=innodb;
920
show create table t2;
921
drop table t2, t1;
922
923
924
#
925
# Bug #6126: Duplicate columns in keys gives misleading error message
926
#
927
--error 1060
928
create table t1 (c char(10), index (c,c)) engine=innodb;
929
--error 1060
930
create table t1 (c1 char(10), c2 char(10), index (c1,c2,c1)) engine=innodb;
931
--error 1060
932
create table t1 (c1 char(10), c2 char(10), index (c1,c1,c2)) engine=innodb;
933
--error 1060
934
create table t1 (c1 char(10), c2 char(10), index (c2,c1,c1)) engine=innodb;
935
create table t1 (c1 char(10), c2 char(10)) engine=innodb;
936
--error 1060
937
alter table t1 add key (c1,c1);
938
--error 1060
939
alter table t1 add key (c2,c1,c1);
940
--error 1060
941
alter table t1 add key (c1,c2,c1);
942
--error 1060
943
alter table t1 add key (c1,c1,c2);
944
drop table t1;
945
946
#
947
# Bug #4082: integer truncation
948
#
949
761 by Brian Aker
Innodb test fix.
950
create table t1(a int, b int) engine=innodb;
1 by brian
clean slate
951
insert into t1 values ('1111', '3333');
952
select distinct concat(a, b) from t1;
953
drop table t1;
954
955
#
956
# check null values #1
957
#
958
959
--disable_warnings
761 by Brian Aker
Innodb test fix.
960
CREATE TABLE t1 (a_id int NOT NULL default '0', PRIMARY KEY  (a_id)) ENGINE=InnoDB;
1 by brian
clean slate
961
INSERT INTO t1 VALUES (1),(2),(3);
761 by Brian Aker
Innodb test fix.
962
CREATE TABLE t2 (b_id int NOT NULL default '0',b_a int NOT NULL default '0', PRIMARY KEY  (b_id), KEY  (b_a), 
963
                CONSTRAINT fk_b_a FOREIGN KEY (b_a) REFERENCES t1 (a_id) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE=InnoDB;
1 by brian
clean slate
964
--enable_warnings
965
INSERT INTO t2 VALUES (1,1),(2,1),(3,1),(4,2),(5,2);
966
SELECT * FROM (SELECT t1.*,GROUP_CONCAT(t2.b_id SEPARATOR ',') as b_list FROM (t1 LEFT JOIN (t2) on t1.a_id = t2.b_a) GROUP BY t1.a_id ) AS xyz;
967
DROP TABLE t2;
968
DROP TABLE t1;
969
970
#
971
# Bug#11816 - Truncate table doesn't work with temporary innodb tables
972
# This is not an innodb bug, but we test it using innodb.
973
#
974
create temporary table t1 (a int) engine=innodb;
975
insert into t1 values (4711);
976
truncate t1;
977
insert into t1 values (42);
978
select * from t1;
979
drop table t1;
980
# Show that it works with permanent tables too.
981
create table t1 (a int) engine=innodb;
982
insert into t1 values (4711);
983
truncate t1;
984
insert into t1 values (42);
985
select * from t1;
986
drop table t1;
987
988
#
989
# Bug #13025  Server crash during filesort	
990
#
991
992
create table t1 (a int not null, b int not null, c blob not null, d int not null, e int, primary key (a,b,c(255),d)) engine=innodb;
993
insert into t1 values (2,2,"b",2,2),(1,1,"a",1,1),(3,3,"ab",3,3);
994
select * from t1 order by a,b,c,d;
995
explain select * from t1 order by a,b,c,d;
996
drop table t1;
997
998
#
999
# BUG#11039,#13218 Wrong key length in min()
1000
#
1001
1002
create table t1 (a char(1), b char(1), key(a, b)) engine=innodb;
1003
insert into t1 values ('8', '6'), ('4', '7');
1004
select min(a) from t1;
1005
select min(b) from t1 where a='8';
1006
drop table t1;
1007
1008
# End of 4.1 tests
1009
1010
#
1011
# range optimizer problem
1012
#
1013
413.2.2 by Brian Aker
Removed UNSIGNED from parser.
1014
create table t1 (x bigint not null primary key) engine=innodb;
761 by Brian Aker
Innodb test fix.
1015
insert into t1(x) values (0x0ffffffffffffff0),(0x0ffffffffffffff1);
1 by brian
clean slate
1016
select * from t1;
1017
select count(*) from t1 where x>0;
1018
select count(*) from t1 where x=0;
1019
select count(*) from t1 where x<0;
1020
select count(*) from t1 where x < -16;
1021
select count(*) from t1 where x = -16;
1022
explain select count(*) from t1 where x > -16;
1023
select count(*) from t1 where x > -16;
1024
select * from t1 where x > -16;
761 by Brian Aker
Innodb test fix.
1025
select count(*) from t1 where x = 1152921504606846961;
1 by brian
clean slate
1026
drop table t1;
1027
1028
761 by Brian Aker
Innodb test fix.
1029
## Not deterministic.
1 by brian
clean slate
1030
# Test for testable InnoDB status variables. This test
1031
# uses previous ones(pages_created, rows_deleted, ...).
761 by Brian Aker
Innodb test fix.
1032
#show status like "Innodb_buffer_pool_pages_total";
1033
#show status like "Innodb_page_size";
1034
#show status like "Innodb_rows_deleted";
1035
#show status like "Innodb_rows_inserted";
1036
#show status like "Innodb_rows_updated";
1 by brian
clean slate
1037
761 by Brian Aker
Innodb test fix.
1038
## Test for row locks InnoDB status variables.
1039
#show status like "Innodb_row_lock_waits";
1040
#show status like "Innodb_row_lock_current_waits";
1041
#show status like "Innodb_row_lock_time";
1042
#show status like "Innodb_row_lock_time_max";
1043
#show status like "Innodb_row_lock_time_avg";
1 by brian
clean slate
1044
1045
# Test for innodb_sync_spin_loops variable
1046
show variables like "innodb_sync_spin_loops";
1047
set global innodb_sync_spin_loops=1000;
1048
show variables like "innodb_sync_spin_loops";
1049
set global innodb_sync_spin_loops=0;
1050
show variables like "innodb_sync_spin_loops";
1051
set global innodb_sync_spin_loops=20;
1052
show variables like "innodb_sync_spin_loops";
1053
1054
# Test for innodb_thread_concurrency variable
1055
show variables like "innodb_thread_concurrency";
1056
set global innodb_thread_concurrency=1001;
1057
show variables like "innodb_thread_concurrency";
1058
set global innodb_thread_concurrency=0;
1059
show variables like "innodb_thread_concurrency";
1060
set global innodb_thread_concurrency=16;
1061
show variables like "innodb_thread_concurrency";
1062
1063
# Test for innodb_concurrency_tickets variable
1064
show variables like "innodb_concurrency_tickets";
1065
set global innodb_concurrency_tickets=1000;
1066
show variables like "innodb_concurrency_tickets";
1067
set global innodb_concurrency_tickets=0;
1068
show variables like "innodb_concurrency_tickets";
1069
set global innodb_concurrency_tickets=500;
1070
show variables like "innodb_concurrency_tickets";
1071
1072
# Test for innodb_thread_sleep_delay variable
1073
show variables like "innodb_thread_sleep_delay";
1074
set global innodb_thread_sleep_delay=100000;
1075
show variables like "innodb_thread_sleep_delay";
1076
set global innodb_thread_sleep_delay=0;
1077
show variables like "innodb_thread_sleep_delay";
1078
set global innodb_thread_sleep_delay=10000;
1079
show variables like "innodb_thread_sleep_delay";
1080
1081
#
1082
# Test varchar
1083
#
1084
1085
let $default=`select @@storage_engine`;
1086
set storage_engine=INNODB;
1087
source include/varchar.inc;
1088
1089
#
1090
# Some errors/warnings on create
1091
#
1092
1093
# Embedded server doesn't chdir to data directory
1094
--replace_result $MYSQLTEST_VARDIR . master-data/ ''
761 by Brian Aker
Innodb test fix.
1095
create table t1 (v varchar(16383), key(v));
1 by brian
clean slate
1096
drop table t1;
761 by Brian Aker
Innodb test fix.
1097
create table t1 (v varchar(16383));
1 by brian
clean slate
1098
show create table t1;
1099
drop table t1;
761 by Brian Aker
Innodb test fix.
1100
create table t1 (v varchar(16383));
1 by brian
clean slate
1101
show create table t1;
1102
drop table t1;
1103
1104
eval set storage_engine=$default;
1105
1106
# InnoDB specific varchar tests
761 by Brian Aker
Innodb test fix.
1107
create table t1 (v varchar(16383)) engine=innodb;
1 by brian
clean slate
1108
drop table t1;
1109
1110
#
1111
# BUG#11039 Wrong key length in min()
1112
#
1113
1114
create table t1 (a char(1), b char(1), key(a, b)) engine=innodb;
1115
insert into t1 values ('8', '6'), ('4', '7');
1116
select min(a) from t1;
1117
select min(b) from t1 where a='8';
1118
drop table t1;
1119
1120
#
1121
# Bug #11080 & #11005  Multi-row REPLACE fails on a duplicate key error
1122
#
1123
761 by Brian Aker
Innodb test fix.
1124
CREATE TABLE t1 ( `a` int NOT NULL auto_increment, `b` int default NULL,PRIMARY KEY  (`a`),UNIQUE KEY `b` (`b`)) ENGINE=innodb;
1 by brian
clean slate
1125
insert into t1 (b) values (1);
1126
replace into t1 (b) values (2), (1), (3);
1127
select * from t1;
1128
truncate table t1;
1129
insert into t1 (b) values (1);
1130
replace into t1 (b) values (2);
1131
replace into t1 (b) values (1);
1132
replace into t1 (b) values (3);
1133
select * from t1;
1134
drop table t1;
1135
1136
create table t1 (rowid int not null auto_increment, val int not null,primary
1137
key (rowid), unique(val)) engine=innodb;
1138
replace into t1 (val) values ('1'),('2');
1139
replace into t1 (val) values ('1'),('2');
1140
--error ER_DUP_ENTRY
1141
insert into t1 (val) values ('1'),('2');
1142
select * from t1;
1143
drop table t1;
1144
1145
#
1146
# Test that update does not change internal auto-increment value
1147
#
1148
1149
create table t1 (a int not null auto_increment primary key, val int) engine=InnoDB;
1150
insert into t1 (val) values (1);
1151
update t1 set a=2 where a=1;
1152
# We should get the following error because InnoDB does not update the counter
1153
--error ER_DUP_ENTRY
1154
insert into t1 (val) values (1);
1155
select * from t1;
1156
drop table t1;
1157
#
1158
# Bug #10465
1159
#
1160
1161
--disable_warnings
1162
CREATE TABLE t1 (GRADE DECIMAL(4) NOT NULL, PRIMARY KEY (GRADE)) ENGINE=INNODB;
1163
--enable_warnings
1164
INSERT INTO t1 (GRADE) VALUES (151),(252),(343);
1165
SELECT GRADE  FROM t1 WHERE GRADE > 160 AND GRADE < 300;
1166
SELECT GRADE  FROM t1 WHERE GRADE= 151;
1167
DROP TABLE t1;
1168
1169
#
1170
# Test that the slow TRUNCATE implementation resets autoincrement columns
1171
# (bug #11946)
1172
#
1173
1174
CREATE TABLE t1 (
1175
id INTEGER NOT NULL AUTO_INCREMENT, PRIMARY KEY (id)
1176
) ENGINE=InnoDB;
1177
1178
CREATE TABLE t2 (
1179
id INTEGER NOT NULL,
1180
FOREIGN KEY (id) REFERENCES t1 (id)
1181
) ENGINE=InnoDB;
1182
1183
INSERT INTO t1 (id) VALUES (NULL);
1184
SELECT * FROM t1;
1185
TRUNCATE t1;
1186
INSERT INTO t1 (id) VALUES (NULL);
1187
SELECT * FROM t1;
1188
1189
# continued from above; test that doing a slow TRUNCATE on a table with 0
1190
# rows resets autoincrement columns
1191
DELETE FROM t1;
1192
TRUNCATE t1;
1193
INSERT INTO t1 (id) VALUES (NULL);
1194
SELECT * FROM t1;
1195
DROP TABLE t2, t1;
1196
1197
# Test that foreign keys in temporary tables are not accepted (bug #12084)
1198
CREATE TABLE t1
1199
(
1200
 id INT PRIMARY KEY
1201
) ENGINE=InnoDB;
1202
1203
--error 1005,1005
1204
CREATE TEMPORARY TABLE t2
1205
(
1206
 id INT NOT NULL PRIMARY KEY,
1207
 b INT,
1208
 FOREIGN KEY (b) REFERENCES test.t1(id)
1209
) ENGINE=InnoDB;
1210
DROP TABLE t1;
1211
1212
#
1213
# Test that index column max sizes are honored (bug #13315)
1214
#
1215
1216
# prefix index
1217
create table t1 (col1 varchar(2000), index (col1(767)))
761 by Brian Aker
Innodb test fix.
1218
 engine = innodb;
1 by brian
clean slate
1219
1220
# normal indexes
1221
create table t2 (col1 char(255), index (col1))
761 by Brian Aker
Innodb test fix.
1222
 engine = innodb;
1 by brian
clean slate
1223
create table t4 (col1 varchar(767), index (col1))
761 by Brian Aker
Innodb test fix.
1224
 engine = innodb;
1225
create table t5 (col1 varchar(190) primary key)
1226
 engine = innodb;
1227
create table t6 (col1 varbinary(254) primary key)
1228
 engine = innodb;
1 by brian
clean slate
1229
create table t7 (col1 text, index(col1(767)))
761 by Brian Aker
Innodb test fix.
1230
 engine = innodb;
1 by brian
clean slate
1231
create table t8 (col1 blob, index(col1(767)))
761 by Brian Aker
Innodb test fix.
1232
 engine = innodb;
1 by brian
clean slate
1233
1234
# multi-column indexes are allowed to be longer
1235
create table t9 (col1 varchar(512), col2 varchar(512), index(col1, col2))
761 by Brian Aker
Innodb test fix.
1236
 engine = innodb;
1 by brian
clean slate
1237
1238
show create table t9;
1239
761 by Brian Aker
Innodb test fix.
1240
drop table t1, t2, t4, t5, t6, t7, t8, t9;
1 by brian
clean slate
1241
1242
# these should have their index length trimmed
1243
create table t1 (col1 varchar(768), index(col1))
761 by Brian Aker
Innodb test fix.
1244
 engine = innodb;
1 by brian
clean slate
1245
create table t2 (col1 varbinary(768), index(col1))
761 by Brian Aker
Innodb test fix.
1246
 engine = innodb;
1 by brian
clean slate
1247
create table t3 (col1 text, index(col1(768)))
761 by Brian Aker
Innodb test fix.
1248
 engine = innodb;
1 by brian
clean slate
1249
create table t4 (col1 blob, index(col1(768)))
761 by Brian Aker
Innodb test fix.
1250
 engine = innodb;
1 by brian
clean slate
1251
1252
show create table t1;
1253
1254
drop table t1, t2, t3, t4;
1255
1256
# these should be refused
1257
--error 1071
1258
create table t1 (col1 varchar(768) primary key)
761 by Brian Aker
Innodb test fix.
1259
 engine = innodb;
1 by brian
clean slate
1260
--error 1071
1261
create table t2 (col1 varbinary(768) primary key)
761 by Brian Aker
Innodb test fix.
1262
 engine = innodb;
1 by brian
clean slate
1263
--error 1071
1264
create table t3 (col1 text, primary key(col1(768)))
761 by Brian Aker
Innodb test fix.
1265
 engine = innodb;
1 by brian
clean slate
1266
--error 1071
1267
create table t4 (col1 blob, primary key(col1(768)))
761 by Brian Aker
Innodb test fix.
1268
 engine = innodb;
1 by brian
clean slate
1269
1270
#
1271
# Test improved foreign key error messages (bug #3443)
1272
#
1273
1274
CREATE TABLE t1
1275
(
1276
 id INT PRIMARY KEY
1277
) ENGINE=InnoDB;
1278
1279
CREATE TABLE t2
1280
(
1281
 v INT,
1282
 CONSTRAINT c1 FOREIGN KEY (v) REFERENCES t1(id)
1283
) ENGINE=InnoDB;
1284
1285
--error 1452
1286
INSERT INTO t2 VALUES(2);
1287
1288
INSERT INTO t1 VALUES(1);
1289
INSERT INTO t2 VALUES(1);
1290
1291
--error 1451
1292
DELETE FROM t1 WHERE id = 1;
1293
1294
--error 1217
1295
DROP TABLE t1;
1296
1297
SET FOREIGN_KEY_CHECKS=0;
1298
DROP TABLE t1;
1299
SET FOREIGN_KEY_CHECKS=1;
1300
1301
--error 1452
1302
INSERT INTO t2 VALUES(3);
1303
1304
DROP TABLE t2;
1305
#
1306
# Test that checksum table uses a consistent read Bug #12669
1307
#
1308
connect (a,localhost,root,,);
1309
connect (b,localhost,root,,);
1310
connection a;
761 by Brian Aker
Innodb test fix.
1311
create table t1(a int not null) engine=innodb;
1 by brian
clean slate
1312
insert into t1 values (1),(2);
1313
set autocommit=0;
1314
checksum table t1;
1315
connection b;
1316
insert into t1 values(3);
1317
connection a;
1318
#
1319
# Here checksum should not see insert
1320
#
1321
checksum table t1;
1322
connection a;
1323
commit;
1324
checksum table t1;
1325
commit;
1326
drop table t1;
1327
#
1328
# autocommit = 1
1329
#
1330
connection a;
761 by Brian Aker
Innodb test fix.
1331
create table t1(a int not null) engine=innodb;
1 by brian
clean slate
1332
insert into t1 values (1),(2);
1333
set autocommit=1;
1334
checksum table t1;
1335
connection b;
1336
set autocommit=1;
1337
insert into t1 values(3);
1338
connection a;
1339
#
1340
# Here checksum sees insert
1341
#
1342
checksum table t1;
1343
drop table t1;
1344
1345
connection default;
1346
disconnect a;
1347
disconnect b;
1348
1349
# tests for bugs #9802 and #13778
1350
1351
# test that FKs between invalid types are not accepted
1352
1353
set foreign_key_checks=0;
1354
create table t2 (a int primary key, b int, foreign key (b) references t1(a)) engine = innodb;
1355
# Embedded server doesn't chdir to data directory
1356
--replace_result $MYSQLTEST_VARDIR . master-data/ ''
1357
-- error 1005
1358
create table t1(a char(10) primary key, b varchar(20)) engine = innodb;
1359
set foreign_key_checks=1;
1360
drop table t2;
1361
1362
# test that invalid datatype conversions with ALTER are not allowed
1363
1364
set foreign_key_checks=0;
1365
create table t2 (a varchar(10), foreign key (a) references t1(a)) engine = innodb;
1366
create table t1(a varchar(10) primary key) engine = innodb;
1367
-- error 1025,1025
1368
alter table t1 modify column a int;
1369
set foreign_key_checks=1;
1370
drop table t2,t1;
1371
1372
# test that foreign key errors are reported correctly (Bug #15550)
1373
1374
create table t1(a int primary key) row_format=redundant engine=innodb;
1375
create table t2(a int primary key,constraint foreign key(a)references t1(a)) row_format=compact engine=innodb;
1376
create table t3(a int primary key) row_format=compact engine=innodb;
1377
create table t4(a int primary key,constraint foreign key(a)references t3(a)) row_format=redundant engine=innodb;
1378
1379
insert into t1 values(1);
1380
insert into t3 values(1);
1381
-- error 1452
1382
insert into t2 values(2);
1383
-- error 1452
1384
insert into t4 values(2);
1385
insert into t2 values(1);
1386
insert into t4 values(1);
1387
-- error 1451
1388
update t1 set a=2;
1389
-- error 1452
1390
update t2 set a=2;
1391
-- error 1451
1392
update t3 set a=2;
1393
-- error 1452
1394
update t4 set a=2;
1395
-- error 1451
1396
truncate t1;
1397
-- error 1451
1398
truncate t3;
1399
truncate t2;
1400
truncate t4;
1401
truncate t1;
1402
truncate t3;
1403
1404
drop table t4,t3,t2,t1;
1405
1406
1407
#
1408
# Test that we can create a large (>1K) key
1409
#
761 by Brian Aker
Innodb test fix.
1410
create table t1 (a varchar(255),
1411
                 b varchar(255),
1412
                 c varchar(255),
1413
                 d varchar(255),
1 by brian
clean slate
1414
                 key (a,b,c,d)) engine=innodb;
1415
drop table t1;
1416
--error ER_TOO_LONG_KEY
761 by Brian Aker
Innodb test fix.
1417
create table t1 (a varchar(255),
1418
                 b varchar(255),
1419
                 c varchar(255),
1420
                 d varchar(255),
1421
                 e varchar(255),
1 by brian
clean slate
1422
                 key (a,b,c,d,e)) engine=innodb;
1423
1424
1425
# test the padding of BINARY types and collations (Bug #14189)
1426
1427
create table t1 (s1 varbinary(2),primary key (s1)) engine=innodb;
1428
create table t3 (s1 varchar(2) binary,primary key (s1)) engine=innodb;
1429
create table t4 (s1 char(2) binary,primary key (s1)) engine=innodb;
1430
1431
insert into t1 values (0x41),(0x4120),(0x4100);
1432
-- error ER_DUP_ENTRY
1433
insert into t3 values (0x41),(0x4120),(0x4100);
1434
insert into t3 values (0x41),(0x4100);
1435
-- error ER_DUP_ENTRY
1436
insert into t4 values (0x41),(0x4120),(0x4100);
1437
insert into t4 values (0x41),(0x4100);
1438
select hex(s1) from t1;
1439
select hex(s1) from t3;
1440
select hex(s1) from t4;
761 by Brian Aker
Innodb test fix.
1441
drop table t1,t3,t4;
1 by brian
clean slate
1442
1443
create table t1 (a int primary key,s1 varbinary(3) not null unique) engine=innodb;
761 by Brian Aker
Innodb test fix.
1444
create table t2 (s1 varbinary(2) not null, constraint c foreign key(s1) references t1(s1) on update cascade) engine=innodb;
1 by brian
clean slate
1445
1446
insert into t1 values(1,0x4100),(2,0x41),(3,0x4120),(4,0x42);
1447
insert into t2 values(0x42);
1448
insert into t2 values(0x41);
1449
select hex(s1) from t2;
761 by Brian Aker
Innodb test fix.
1450
-- error 1451
1 by brian
clean slate
1451
update t1 set s1=0x123456 where a=2;
1452
select hex(s1) from t2;
1453
update t1 set s1=0x12 where a=1;
761 by Brian Aker
Innodb test fix.
1454
-- error 1406
1 by brian
clean slate
1455
update t1 set s1=0x12345678 where a=1;
1456
update t1 set s1=0x123457 where a=1;
1457
update t1 set s1=0x1220 where a=1;
1458
select hex(s1) from t2;
1459
update t1 set s1=0x1200 where a=1;
1460
select hex(s1) from t2;
1461
update t1 set s1=0x4200 where a=1;
1462
select hex(s1) from t2;
1463
delete from t1 where a=1;
1464
update t2 set s1=0x4120;
1465
-- error 1451
1466
delete from t1;
1467
delete from t1 where a!=3;
1468
select a,hex(s1) from t1;
1469
select hex(s1) from t2;
1470
1471
drop table t2,t1;
1472
1473
create table t1 (a int primary key,s1 varchar(2) binary not null unique) engine=innodb;
1474
create table t2 (s1 char(2) binary not null, constraint c foreign key(s1) references t1(s1) on update cascade) engine=innodb;
1475
1476
insert into t1 values(1,0x4100),(2,0x41);
1477
insert into t2 values(0x41);
1478
select hex(s1) from t2;
1479
update t1 set s1=0x1234 where a=1;
1480
select hex(s1) from t2;
1481
update t1 set s1=0x12 where a=2;
1482
select hex(s1) from t2;
1483
delete from t1 where a=1;
1484
-- error 1451
1485
delete from t1 where a=2;
1486
select a,hex(s1) from t1;
1487
select hex(s1) from t2;
1488
1489
drop table t2,t1;
1490
# Ensure that <tablename>_ibfk_0 is not mistreated as a
1491
# generated foreign key identifier.  (Bug #16387)
1492
1493
CREATE TABLE t1(a INT, PRIMARY KEY(a)) ENGINE=InnoDB;
1494
CREATE TABLE t2(a INT) ENGINE=InnoDB;
1495
ALTER TABLE t2 ADD FOREIGN KEY (a) REFERENCES t1(a);
1496
ALTER TABLE t2 DROP FOREIGN KEY t2_ibfk_1;
1497
ALTER TABLE t2 ADD CONSTRAINT t2_ibfk_0 FOREIGN KEY (a) REFERENCES t1(a);
1498
ALTER TABLE t2 DROP FOREIGN KEY t2_ibfk_0;
1499
SHOW CREATE TABLE t2;
1500
DROP TABLE t2,t1;
1501
1502
#
1503
# Test that cascading updates leading to duplicate keys give the correct
1504
# error message (bug #9680)
1505
#
1506
1507
CREATE TABLE t1 (
1508
  field1 varchar(8) NOT NULL DEFAULT '',
1509
  field2 varchar(8) NOT NULL DEFAULT '',
1510
  PRIMARY KEY  (field1, field2)
1511
) ENGINE=InnoDB;
1512
1513
CREATE TABLE t2 (
1514
  field1 varchar(8) NOT NULL DEFAULT '' PRIMARY KEY,
1515
  FOREIGN KEY (field1) REFERENCES t1 (field1)
1516
    ON DELETE CASCADE ON UPDATE CASCADE
1517
) ENGINE=InnoDB;
1518
1519
INSERT INTO t1 VALUES ('old', 'somevalu');
1520
INSERT INTO t1 VALUES ('other', 'anyvalue');
1521
1522
INSERT INTO t2 VALUES ('old');
1523
INSERT INTO t2 VALUES ('other');
1524
1525
--error ER_FOREIGN_DUPLICATE_KEY
1526
UPDATE t1 SET field1 = 'other' WHERE field2 = 'somevalu';
1527
1528
DROP TABLE t2;
1529
DROP TABLE t1;
1530
1531
#
1532
# Bug#18477 - MySQL/InnoDB Ignoring Foreign Keys in ALTER TABLE
1533
#
1534
create table t1 (
1535
  c1 bigint not null,
1536
  c2 bigint not null,
1537
  primary key (c1),
1538
  unique  key (c2)
1539
) engine=innodb;
1540
#
1541
create table t2 (
1542
  c1 bigint not null,
1543
  primary key (c1)
1544
) engine=innodb;
1545
#
1546
alter table t1 add constraint c2_fk foreign key (c2)
1547
  references t2(c1) on delete cascade;
1548
show create table t1;
1549
#
1550
alter table t1 drop foreign key c2_fk;
1551
show create table t1;
1552
#
1553
drop table t1, t2;
1554
1555
#
1556
# Bug #14360: problem with intervals
1557
#
1558
1559
create table t1(a date) engine=innodb;
1560
create table t2(a date, key(a)) engine=innodb;
1561
insert into t1 values('2005-10-01');
1562
insert into t2 values('2005-10-01');
1563
select * from t1, t2
1564
  where t2.a between t1.a - interval 2 day and t1.a + interval 2 day;
1565
drop table t1, t2;
1566
1567
create table t1 (id int not null, f_id int not null, f int not null,
1568
primary key(f_id, id)) engine=innodb;
1569
create table t2 (id int not null,s_id int not null,s varchar(200),
1570
primary key(id)) engine=innodb;
1571
INSERT INTO t1 VALUES (8, 1, 3);
1572
INSERT INTO t1 VALUES (1, 2, 1);
1573
INSERT INTO t2 VALUES (1, 0, '');
1574
INSERT INTO t2 VALUES (8, 1, '');
1575
commit;
1576
select ml.* from t1 as ml left join t2 as mm on (mm.id=ml.id)
1577
where mm.id is null lock in share mode;
1578
drop table t1,t2;
1579
1580
#
1581
# Test case where X-locks on unused rows should be released in a
1582
# update (because READ COMMITTED isolation level)
1583
#
1584
1585
connect (a,localhost,root,,);
1586
connect (b,localhost,root,,);
1587
connection a;
1588
create table t1(a int not null, b int, primary key(a)) engine=innodb;
1589
insert into t1 values(1,1),(2,2),(3,1),(4,2),(5,1),(6,2),(7,3);
1590
commit;
1591
set autocommit = 0; 
1592
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1593
update t1 set b = 5 where b = 1;
1594
connection b;
1595
set autocommit = 0;
1596
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1597
#
1598
# X-lock to record (7,3) should be released in a update 
1599
#
1600
select * from t1 where a = 7 and b = 3 for update;
1601
connection a;
1602
commit;
1603
connection b;
1604
commit;
1605
drop table t1;
1606
connection default;
1607
disconnect a;
1608
disconnect b;
1609
1610
#
1611
# Test case where no locks should be released (because we are not
1612
# using READ COMMITTED isolation level)
1613
#
1614
1615
connect (a,localhost,root,,);
1616
connect (b,localhost,root,,);
1617
connection a;
1618
create table t1(a int not null, b int, primary key(a)) engine=innodb;
1619
insert into t1 values(1,1),(2,2),(3,1),(4,2),(5,1),(6,2);
1620
commit;
1621
set autocommit = 0; 
1622
select * from t1 lock in share mode;
1623
update t1 set b = 5 where b = 1;
1624
connection b;
1625
set autocommit = 0;
1626
#
1627
# S-lock to records (2,2),(4,2), and (6,2) should not be released in a update
1628
#
1629
--error 1205
1630
select * from t1 where a = 2 and b = 2 for update;
1631
#
1632
# X-lock to record (1,1),(3,1),(5,1) should not be released in a update
1633
#
1634
--error 1205
1635
connection a;
1636
commit;
1637
connection b;
1638
commit;
1639
connection default;
1640
disconnect a;
1641
disconnect b;
1642
drop table t1;
1643
1644
#
1645
# Consistent read should be used in following selects
1646
#
1647
# 1) INSERT INTO ... SELECT
1648
# 2) UPDATE ... = ( SELECT ...)
1649
# 3) CREATE ... SELECT
1650
1651
connect (a,localhost,root,,);
1652
connect (b,localhost,root,,);
1653
connection a;
1654
create table t1(a int not null, b int, primary key(a)) engine=innodb;
1655
insert into t1 values (1,2),(5,3),(4,2);
1656
create table t2(d int not null, e int, primary key(d)) engine=innodb;
1657
insert into t2 values (8,6),(12,1),(3,1);
1658
commit;
1659
set autocommit = 0;
1660
select * from t2 for update;
1661
connection b;
1662
set autocommit = 0;
1663
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1664
insert into t1 select * from t2;
1665
update t1 set b = (select e from t2 where a = d);
1666
create table t3(d int not null, e int, primary key(d)) engine=innodb
1667
select * from t2;
1668
commit;
1669
connection a;
1670
commit;
1671
connection default;
1672
disconnect a;
1673
disconnect b;
1674
drop table t1, t2, t3;
1675
1676
#
1677
# Consistent read should not be used if 
1678
#
1679
# (a) isolation level is serializable OR
1680
# (b) select ... lock in share mode OR
1681
# (c) select ... for update
1682
#
1683
# in following queries:
1684
#
1685
# 1) INSERT INTO ... SELECT
1686
# 2) UPDATE ... = ( SELECT ...)
1687
# 3) CREATE ... SELECT
1688
1689
connect (a,localhost,root,,);
1690
connect (b,localhost,root,,);
1691
connect (c,localhost,root,,);
1692
connect (d,localhost,root,,);
1693
connect (e,localhost,root,,);
1694
connect (f,localhost,root,,);
1695
connect (g,localhost,root,,);
1696
connect (h,localhost,root,,);
1697
connect (i,localhost,root,,);
1698
connect (j,localhost,root,,);
1699
connection a;
1700
create table t1(a int not null, b int, primary key(a)) engine=innodb;
1701
insert into t1 values (1,2),(5,3),(4,2);
1702
create table t2(a int not null, b int, primary key(a)) engine=innodb;
1703
insert into t2 values (8,6),(12,1),(3,1);
1704
create table t3(d int not null, b int, primary key(d)) engine=innodb;
1705
insert into t3 values (8,6),(12,1),(3,1);
1706
create table t5(a int not null, b int, primary key(a)) engine=innodb;
1707
insert into t5 values (1,2),(5,3),(4,2);
1708
create table t6(d int not null, e int, primary key(d)) engine=innodb;
1709
insert into t6 values (8,6),(12,1),(3,1);
1710
create table t8(a int not null, b int, primary key(a)) engine=innodb;
1711
insert into t8 values (1,2),(5,3),(4,2);
1712
create table t9(d int not null, e int, primary key(d)) engine=innodb;
1713
insert into t9 values (8,6),(12,1),(3,1);
1714
commit;
1715
set autocommit = 0;
1716
select * from t2 for update;
1717
connection b;
1718
set autocommit = 0;
1719
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
1720
--send
1721
insert into t1 select * from t2;
1722
connection c;
1723
set autocommit = 0;
1724
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
1725
--send
1726
update t3 set b = (select b from t2 where a = d);
1727
connection d;
1728
set autocommit = 0;
1729
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
1730
--send
1731
create table t4(a int not null, b int, primary key(a)) engine=innodb select * from t2;
1732
connection e;
1733
set autocommit = 0;
1734
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1735
--send
1736
insert into t5 (select * from t2 lock in share mode);
1737
connection f;
1738
set autocommit = 0;
1739
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1740
--send
1741
update t6 set e = (select b from t2 where a = d lock in share mode);
1742
connection g;
1743
set autocommit = 0;
1744
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1745
--send
1746
create table t7(a int not null, b int, primary key(a)) engine=innodb select * from t2 lock in share mode;
1747
connection h;
1748
set autocommit = 0;
1749
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1750
--send
1751
insert into t8 (select * from t2 for update);
1752
connection i;
1753
set autocommit = 0;
1754
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1755
--send
1756
update t9 set e = (select b from t2 where a = d for update);
1757
connection j;
1758
set autocommit = 0;
1759
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
1760
--send
1761
create table t10(a int not null, b int, primary key(a)) engine=innodb select * from t2 for update;
1762
1763
connection b;
1764
--error 1205
1765
reap;
1766
1767
connection c;
1768
--error 1205
1769
reap;
1770
1771
connection d;
1772
--error 1205
1773
reap;
1774
1775
connection e;
1776
--error 1205
1777
reap;
1778
1779
connection f;
1780
--error 1205
1781
reap;
1782
1783
connection g;
1784
--error 1205
1785
reap;
1786
1787
connection h;
1788
--error 1205
1789
reap;
1790
1791
connection i;
1792
--error 1205
1793
reap;
1794
1795
connection j;
1796
--error 1205
1797
reap;
1798
1799
connection a;
1800
commit;
1801
1802
connection default;
1803
disconnect a;
1804
disconnect b;
1805
disconnect c;
1806
disconnect d;
1807
disconnect e;
1808
disconnect f;
1809
disconnect g;
1810
disconnect h;
1811
disconnect i;
1812
disconnect j;
1813
drop table t1, t2, t3, t5, t6, t8, t9;
1814
1815
# bug 18934, "InnoDB crashes when table uses column names like DB_ROW_ID"
1816
--error 1005
1817
CREATE TABLE t1 (DB_ROW_ID int) engine=innodb;
1818
1819
#
1820
# Bug #17152: Wrong result with BINARY comparison on aliased column
1821
#
1822
1823
CREATE TABLE t1 (
761 by Brian Aker
Innodb test fix.
1824
   a BIGINT NOT NULL,
1 by brian
clean slate
1825
    PRIMARY KEY  (a)
761 by Brian Aker
Innodb test fix.
1826
 ) ENGINE=INNODB;
1 by brian
clean slate
1827
1828
CREATE TABLE t2 (
761 by Brian Aker
Innodb test fix.
1829
  a BIGINT NOT NULL,
1 by brian
clean slate
1830
  b VARCHAR(128) NOT NULL,
1831
  c TEXT NOT NULL,
1832
  PRIMARY KEY  (a,b),
1833
  KEY idx_t2_b_c (b,c(200)),
1834
  CONSTRAINT t_fk FOREIGN KEY (a) REFERENCES t1 (a) 
1835
   ON DELETE CASCADE
761 by Brian Aker
Innodb test fix.
1836
 ) ENGINE=INNODB;
1 by brian
clean slate
1837
1838
INSERT INTO t1 VALUES (1);
1839
INSERT INTO t2 VALUES (1, 'bar', 'vbar');
1840
INSERT INTO t2 VALUES (1, 'BAR2', 'VBAR');
1841
INSERT INTO t2 VALUES (1, 'bar_bar', 'bibi');
1842
INSERT INTO t2 VALUES (1, 'customer_over', '1');
1843
1844
SELECT * FROM t2 WHERE b = 'customer_over';
1845
SELECT * FROM t2 WHERE BINARY b = 'customer_over';
1846
SELECT DISTINCT p0.a FROM t2 p0 WHERE p0.b = 'customer_over';
1847
/* Bang: Empty result set, above was expected: */
1848
SELECT DISTINCT p0.a FROM t2 p0 WHERE BINARY p0.b = 'customer_over';
1849
SELECT p0.a FROM t2 p0 WHERE BINARY p0.b = 'customer_over';
1850
1851
drop table t2, t1;
1852
1853
#
1854
# Test optimize on table with open transaction
1855
#
1856
1857
CREATE TABLE t1 ( a int ) ENGINE=innodb;
1858
BEGIN;
1859
INSERT INTO t1 VALUES (1);
1860
OPTIMIZE TABLE t1;
1861
DROP TABLE t1;
1862
1863
#
1864
# Bug #24741 (existing cascade clauses disappear when adding foreign keys)
1865
#
1866
1867
CREATE TABLE t1 (id int PRIMARY KEY, f int NOT NULL, INDEX(f)) ENGINE=InnoDB;
1868
1869
CREATE TABLE t2 (id int PRIMARY KEY, f INT NOT NULL,
1870
  CONSTRAINT t2_t1 FOREIGN KEY (id) REFERENCES t1 (id)
1871
  ON DELETE CASCADE ON UPDATE CASCADE) ENGINE=InnoDB;
1872
1873
ALTER TABLE t2 ADD FOREIGN KEY (f) REFERENCES t1 (f) ON
1874
DELETE CASCADE ON UPDATE CASCADE;
1875
1876
SHOW CREATE TABLE t2;
1877
DROP TABLE t2, t1;
1878
1879
#
1880
# Bug #25927: Prevent ALTER TABLE ... MODIFY ... NOT NULL on columns
1881
# for which there is a foreign key constraint ON ... SET NULL.
1882
#
1883
1884
CREATE TABLE t1 (a INT, INDEX(a)) ENGINE=InnoDB;
1885
CREATE TABLE t2 (a INT, INDEX(a)) ENGINE=InnoDB;
1886
INSERT INTO t1 VALUES (1);
1887
INSERT INTO t2 VALUES (1);
1888
ALTER TABLE t2 ADD FOREIGN KEY (a) REFERENCES t1 (a) ON DELETE SET NULL;
1889
# mysqltest first does replace_regex, then replace_result
1890
--replace_regex /'[^']*test\/#sql-[0-9a-f_]*'/'#sql-temporary'/
1891
# Embedded server doesn't chdir to data directory
1892
--replace_result $MYSQLTEST_VARDIR . master-data/ ''
1893
--error 1025
1894
ALTER TABLE t2 MODIFY a INT NOT NULL;
1895
DELETE FROM t1;
1896
DROP TABLE t2,t1;
1897
1898
#
1899
# Bug #26835: table corruption after delete+insert
1900
#
1901
1902
CREATE TABLE t1 (a VARCHAR(5) COLLATE utf8_unicode_ci PRIMARY KEY)
1903
ENGINE=InnoDB;
1904
INSERT INTO t1 VALUES (0xEFBCA4EFBCA4EFBCA4);
1905
DELETE FROM t1;
1906
INSERT INTO t1 VALUES ('DDD');
1907
SELECT * FROM t1;
1908
DROP TABLE t1;
1909
1910
#
1911
# Bug #23313 (AUTO_INCREMENT=# not reported back for InnoDB tables)
1912
# Bug #21404 (AUTO_INCREMENT value reset when Adding FKEY (or ALTER?))
1913
#
1914
1915
CREATE TABLE t1 (id int PRIMARY KEY AUTO_INCREMENT) ENGINE=InnoDB
1916
AUTO_INCREMENT=42;
1917
1008.3.2 by Stewart Smith
Make sql_mode=NO_AUTO_VALUE_ON_ZERO default for Drizzle.
1918
INSERT INTO t1 VALUES (NULL),(347),(NULL);
1 by brian
clean slate
1919
SELECT * FROM t1;
1920
1921
SHOW CREATE TABLE t1;
1922
1923
CREATE TABLE t2 (id int PRIMARY KEY) ENGINE=InnoDB;
1924
INSERT INTO t2 VALUES(42),(347),(348);
1925
ALTER TABLE t1 ADD CONSTRAINT t1_t2 FOREIGN KEY (id) REFERENCES t2(id);
1926
SHOW CREATE TABLE t1;
1927
1928
DROP TABLE t1,t2;
1929
1930
#
1931
# Bug #31860 InnoDB assumes AUTOINC values can only be positive.
1932
#
1933
DROP TABLE IF EXISTS t1;
1934
CREATE TABLE t1(
761 by Brian Aker
Innodb test fix.
1935
	id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY
1 by brian
clean slate
1936
	) ENGINE=InnoDB;
1937
INSERT INTO t1 VALUES(-10);
1938
SELECT * FROM t1;
1939
#
1940
# NOTE: The server really needs to be restarted at this point
1941
# for the test to be useful.  
1942
#
1943
# Without the fix InnoDB would trip over an assertion here.
1944
INSERT INTO t1 VALUES(NULL);
1945
# The next value should be 1 and not -9 or a -ve number
1946
SELECT * FROM t1;
1947
DROP TABLE t1;
1948
1949
#######################################################################
1950
#                                                                     #
1951
# Please, DO NOT TOUCH this file as well as the innodb.result file.   #
1952
# These files are to be modified ONLY BY INNOBASE guys.               #
1953
#                                                                     #
1954
# Use innodb_mysql.[test|result] files instead.                       #
1955
#                                                                     #
1956
# If nevertheless you need to make some changes here, please, forward #
1957
# your commit message To: dev@innodb.com Cc: dev-innodb@mysql.com     #
1958
# (otherwise your changes may be erased).                             #
1959
#                                                                     #
1960
#######################################################################