sp.result 169 KB
Newer Older
1
use test;
2
drop table if exists t1,t2,t3,t4;
gshchepa/uchum@gleb.loc's avatar
gshchepa/uchum@gleb.loc committed
3 4 5
drop view if exists v1;
drop procedure if exists p1;
drop procedure if exists p2;
gshchepa/uchum@gleb.loc's avatar
gshchepa/uchum@gleb.loc committed
6 7
drop function if exists f1;
drop function if exists f2;
8
create table t1 (
9
id   char(16) not null default '',
10 11
data int not null
);
12
create table t2 (
13 14 15
s   char(16),
i   int,
d   double
16
);
17
drop procedure if exists foo42;
18 19
create procedure foo42()
insert into test.t1 values ("foo", 42);
20 21 22 23 24 25
call foo42();
select * from t1;
id	data
foo	42
delete from t1;
drop procedure foo42;
26
drop procedure if exists bar;
27 28
create procedure bar(x char(16), y int)
insert into test.t1 values (x, y);
29 30 31 32 33
call bar("bar", 666);
select * from t1;
id	data
bar	666
delete from t1;
34
drop procedure if exists empty|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
35 36
create procedure empty()
begin
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
37 38 39
end|
call empty()|
drop procedure empty|
40
drop procedure if exists scope|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
41 42 43 44 45 46 47
create procedure scope(a int, b float)
begin
declare b int;
declare c float;
begin
declare c int;
end;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
48 49
end|
drop procedure scope|
50
drop procedure if exists two|
51 52 53 54
create procedure two(x1 char(16), x2 char(16), y int)
begin
insert into test.t1 values (x1, y);
insert into test.t1 values (x2, y);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
55 56 57
end|
call two("one", "two", 3)|
select * from t1|
58 59 60
id	data
one	3
two	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
61 62
delete from t1|
drop procedure two|
63
drop procedure if exists locset|
64 65 66 67 68 69
create procedure locset(x char(16), y int)
begin
declare z1, z2 int;
set z1 = y;
set z2 = z1+2;
insert into test.t1 values (x, z2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
70 71 72
end|
call locset("locset", 19)|
select * from t1|
73 74
id	data
locset	21
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
75 76
delete from t1|
drop procedure locset|
77
drop procedure if exists setcontext|
78 79 80 81 82 83 84 85
create procedure setcontext()
begin
declare data int default 2;
insert into t1 (id, data) values ("foo", 1);
replace t1 set data = data, id = "bar";
update t1 set id = "kaka", data = 3 where t1.data = data;
end|
call setcontext()|
86
select * from t1 order by data|
87 88 89 90 91
id	data
foo	1
kaka	3
delete from t1|
drop procedure setcontext|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
92
create table t3 ( d date, i int, f double, s varchar(32) )|
93
drop procedure if exists nullset|
94 95 96 97 98 99 100 101
create procedure nullset()
begin
declare ld date;
declare li int;
declare lf double;
declare ls varchar(32);
set ld = null, li = null, lf = null, ls = null;
insert into t3 values (ld, li, lf, ls);
102 103 104 105 106 107
insert into t3 (i, f, s) values ((ld is null), 1,    "ld is null"),
((li is null), 1,    "li is null"),
((li = 0),     null, "li = 0"),
((lf is null), 1,    "lf is null"),
((lf = 0),     null, "lf = 0"),
((ls is null), 1,    "ls is null");
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
108 109 110
end|
call nullset()|
select * from t3|
111 112
d	i	f	s
NULL	NULL	NULL	NULL
113 114 115 116 117 118
NULL	1	1	ld is null
NULL	1	1	li is null
NULL	NULL	NULL	li = 0
NULL	1	1	lf is null
NULL	NULL	NULL	lf = 0
NULL	1	1	ls is null
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
119 120
drop table t3|
drop procedure nullset|
121
drop procedure if exists mixset|
122 123 124 125 126
create procedure mixset(x char(16), y int)
begin
declare z int;
set @z = y, z = 666, max_join_size = 100;
insert into test.t1 values (x, z);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
127 128 129
end|
call mixset("mixset", 19)|
show variables like 'max_join_size'|
130 131
Variable_name	Value
max_join_size	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
132
select id,data,@z from t1|
133 134
id	data	@z
mixset	666	19
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
135 136
delete from t1|
drop procedure mixset|
137
drop procedure if exists zip|
138 139 140 141 142
create procedure zip(x char(16), y int)
begin
declare z int;
call zap(y, z);
call bar(x, z);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
143
end|
144
drop procedure if exists zap|
145 146 147 148
create procedure zap(x int, out y int)
begin
declare z int;
set z = x+1, y = z;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
149 150 151
end|
call zip("zip", 99)|
select * from t1|
152 153
id	data
zip	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
154 155 156 157 158
delete from t1|
drop procedure zip|
drop procedure bar|
call zap(7, @zap)|
select @zap|
159 160
@zap
8
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
161
drop procedure zap|
162
drop procedure if exists c1|
163
create procedure c1(x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
164
call c2("c", x)|
165
drop procedure if exists c2|
166
create procedure c2(s char(16), x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
167
call c3(x, s)|
168
drop procedure if exists c3|
169
create procedure c3(x int, s char(16))
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
170
call c4("level", x, s)|
171
drop procedure if exists c4|
172
create procedure c4(l char(8), x int, s char(16))
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
173 174 175
insert into t1 values (concat(l,s), x)|
call c1(42)|
select * from t1|
176 177
id	data
levelc	42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
178 179 180 181 182
delete from t1|
drop procedure c1|
drop procedure c2|
drop procedure c3|
drop procedure c4|
183
drop procedure if exists iotest|
184 185 186 187
create procedure iotest(x1 char(16), x2 char(16), y int)
begin
call inc2(x2, y);
insert into test.t1 values (x1, y);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
188
end|
189
drop procedure if exists inc2|
190 191 192 193
create procedure inc2(x char(16), y int)
begin
call inc(y);
insert into test.t1 values (x, y);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
194
end|
195
drop procedure if exists inc|
196
create procedure inc(inout io int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
197 198
set io = io + 1|
call iotest("io1", "io2", 1)|
199
select * from t1 order by data desc|
200 201 202
id	data
io2	2
io1	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
203 204 205
delete from t1|
drop procedure iotest|
drop procedure inc2|
206
drop procedure if exists incr|
207
create procedure incr(inout x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
208 209
call inc(x)|
select @zap|
210 211
@zap
8
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
212 213
call incr(@zap)|
select @zap|
214 215
@zap
9
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
216 217
drop procedure inc|
drop procedure incr|
218
drop procedure if exists cbv1|
219 220
create procedure cbv1()
begin
221
declare y int default 3;
222 223
call cbv2(y+1, y);
insert into test.t1 values ("cbv1", y);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
224
end|
225
drop procedure if exists cbv2|
226 227 228 229
create procedure cbv2(y1 int, inout y2 int)
begin
set y2 = 4711;
insert into test.t1 values ("cbv2", y1);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
230 231
end|
call cbv1()|
232
select * from t1 order by data|
233 234 235
id	data
cbv2	4
cbv1	4711
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
236 237 238 239
delete from t1|
drop procedure cbv1|
drop procedure cbv2|
insert into t2 values ("a", 1, 1.1), ("b", 2, 1.2), ("c", 3, 1.3)|
240
drop procedure if exists sub1|
pem@mysql.com's avatar
pem@mysql.com committed
241
create procedure sub1(id char(16), x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
242
insert into test.t1 values (id, x)|
243 244 245 246 247 248 249
drop procedure if exists sub2|
create procedure sub2(id char(16))
begin
declare x int;
set x = (select sum(t.i) from test.t2 t);
insert into test.t1 values (id, x);
end|
250
drop procedure if exists sub3|
251
create function sub3(i int) returns int deterministic
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
252 253 254 255
return i+1|
call sub1("sub1a", (select 7))|
call sub1("sub1b", (select max(i) from t2))|
call sub1("sub1c", (select i,d from t2 limit 1))|
256
ERROR 21000: Operand should contain 1 column(s)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
257
call sub1("sub1d", (select 1 from (select 1) a))|
258
call sub2("sub2")|
259
select * from t1 order by id|
pem@mysql.com's avatar
pem@mysql.com committed
260 261 262 263
id	data
sub1a	7
sub1b	3
sub1d	1
264
sub2	6
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
265
select sub3((select max(i) from t2))|
pem@mysql.com's avatar
pem@mysql.com committed
266 267
sub3((select max(i) from t2))
4
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
268
drop procedure sub1|
269
drop procedure sub2|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
270
drop function sub3|
271
delete from t1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
272
delete from t2|
273
drop procedure if exists a0|
274 275 276 277
create procedure a0(x int)
while x do
set x = x-1;
insert into test.t1 values ("a0", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
278 279
end while|
call a0(3)|
280
select * from t1 order by data desc|
281 282 283 284
id	data
a0	2
a0	1
a0	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
285 286
delete from t1|
drop procedure a0|
287
drop procedure if exists a|
288 289 290 291
create procedure a(x int)
while x > 0 do
set x = x-1;
insert into test.t1 values ("a", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
292 293
end while|
call a(3)|
294
select * from t1 order by data desc|
295 296 297 298
id	data
a	2
a	1
a	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
299 300
delete from t1|
drop procedure a|
301
drop procedure if exists b|
302
create procedure b(x int)
303 304
repeat
insert into test.t1 values (repeat("b",3), x);
305
set x = x-1;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
306 307
until x = 0 end repeat|
call b(3)|
308
select * from t1 order by data desc|
309 310 311 312
id	data
bbb	3
bbb	2
bbb	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
313 314
delete from t1|
drop procedure b|
315
drop procedure if exists b2|
316 317 318 319
create procedure b2(x int)
repeat(select 1 into outfile 'b2');
insert into test.t1 values (repeat("b2",3), x);
set x = x-1;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
320 321
until x = 0 end repeat|
drop procedure b2|
322
drop procedure if exists c|
323 324 325 326 327 328
create procedure c(x int)
hmm: while x > 0 do
insert into test.t1 values ("c", x);
set x = x-1;
iterate hmm;
insert into test.t1 values ("x", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
329 330
end while hmm|
call c(3)|
331
select * from t1 order by data desc|
332 333 334 335
id	data
c	3
c	2
c	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
336 337
delete from t1|
drop procedure c|
338
drop procedure if exists d|
339 340 341 342 343 344
create procedure d(x int)
hmm: while x > 0 do
insert into test.t1 values ("d", x);
set x = x-1;
leave hmm;
insert into test.t1 values ("x", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
345 346 347
end while|
call d(3)|
select * from t1|
348 349
id	data
d	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
350 351
delete from t1|
drop procedure d|
352
drop procedure if exists e|
353 354 355 356 357 358 359
create procedure e(x int)
foo: loop
if x = 0 then
leave foo;
end if;
insert into test.t1 values ("e", x);
set x = x-1;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
360 361
end loop foo|
call e(3)|
362
select * from t1 order by data desc|
363 364 365 366
id	data
e	3
e	2
e	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
367 368
delete from t1|
drop procedure e|
369
drop procedure if exists f|
370 371 372 373 374 375 376
create procedure f(x int)
if x < 0 then
insert into test.t1 values ("f", 0);
elseif x = 0 then
insert into test.t1 values ("f", 1);
else
insert into test.t1 values ("f", 2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
377 378 379 380
end if|
call f(-2)|
call f(0)|
call f(4)|
381
select * from t1 order by data|
382 383 384 385
id	data
f	0
f	1
f	2
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
386 387
delete from t1|
drop procedure f|
388
drop procedure if exists g|
389 390 391 392 393 394 395 396
create procedure g(x int)
case
when x < 0 then
insert into test.t1 values ("g", 0);
when x = 0 then
insert into test.t1 values ("g", 1);
else
insert into test.t1 values ("g", 2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
397 398 399 400
end case|
call g(-42)|
call g(0)|
call g(1)|
401
select * from t1 order by data|
402 403 404 405
id	data
g	0
g	1
g	2
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
406 407
delete from t1|
drop procedure g|
408
drop procedure if exists h|
409 410 411 412 413 414 415 416
create procedure h(x int)
case x
when 0 then
insert into test.t1 values ("h0", x);
when 1 then
insert into test.t1 values ("h1", x);
else
insert into test.t1 values ("h?", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
417 418 419 420
end case|
call h(0)|
call h(1)|
call h(17)|
421
select * from t1 order by data|
422 423 424 425
id	data
h0	0
h1	1
h?	17
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
426 427
delete from t1|
drop procedure h|
428
drop procedure if exists i|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
429 430 431 432 433 434 435
create procedure i(x int)
foo:
begin
if x = 0 then
leave foo;
end if;
insert into test.t1 values ("i", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
436 437 438 439
end foo|
call i(0)|
call i(3)|
select * from t1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
440 441
id	data
i	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
442 443 444 445
delete from t1|
drop procedure i|
insert into t1 values ("foo", 3), ("bar", 19)|
insert into t2 values ("x", 9, 4.1), ("y", -1, 19.2), ("z", 3, 2.2)|
446
drop procedure if exists sel1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
447 448
create procedure sel1()
begin
449
select * from t1 order by data;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
450 451 452 453 454 455
end|
call sel1()|
id	data
foo	3
bar	19
drop procedure sel1|
456
drop procedure if exists sel2|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
457 458
create procedure sel2()
begin
459 460
select * from t1 order by data;
select * from t2 order by s;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
461 462 463 464 465 466 467 468 469 470 471 472
end|
call sel2()|
id	data
foo	3
bar	19
s	i	d
x	9	4.1
y	-1	19.2
z	3	2.2
drop procedure sel2|
delete from t1|
delete from t2|
473
drop procedure if exists into_test|
474 475 476 477 478
create procedure into_test(x char(16), y int)
begin
insert into test.t1 values (x, y);
select id,data into x,y from test.t1 limit 1;
insert into test.t1 values (concat(x, "2"), y+2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
479 480
end|
call into_test("into", 100)|
481
select * from t1 order by data|
482
id	data
483 484
into	100
into2	102
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
485 486
delete from t1|
drop procedure into_test|
487
drop procedure if exists into_tes2|
488 489 490 491 492
create procedure into_test2(x char(16), y int)
begin
insert into test.t1 values (x, y);
select id,data into x,@z from test.t1 limit 1;
insert into test.t1 values (concat(x, "2"), y+2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
493 494
end|
call into_test2("into", 100)|
495
select id,data,@z from t1 order by data|
496 497 498
id	data	@z
into	100	100
into2	102	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
499 500
delete from t1|
drop procedure into_test2|
501
drop procedure if exists into_test3|
502 503 504 505 506 507
create procedure into_test3()
begin
declare x char(16);
declare y int;
select * into x,y from test.t1 limit 1;
insert into test.t2 values (x, y, 0.0);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
508 509 510 511 512
end|
insert into t1 values ("into3", 19)|
call into_test3()|
call into_test3()|
select * from t2|
513 514 515
s	i	d
into3	19	0
into3	19	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
516 517 518
delete from t1|
delete from t2|
drop procedure into_test3|
519
drop procedure if exists into_test4|
520 521 522 523 524
create procedure into_test4()
begin
declare x int;
select data into x from test.t1 limit 1;
insert into test.t3 values ("into4", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
525 526 527 528 529
end|
delete from t1|
create table t3 ( s char(16), d int)|
call into_test4()|
select * from t3|
530 531
s	d
into4	NULL
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
532 533 534
insert into t1 values ("i4", 77)|
call into_test4()|
select * from t3|
535 536 537
s	d
into4	NULL
into4	77
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
538 539 540
delete from t1|
drop table t3|
drop procedure into_test4|
541
drop procedure if exists into_outfile|
542 543 544
create procedure into_outfile(x char(16), y int)
begin
insert into test.t1 values (x, y);
msvensson@pilot.mysql.com's avatar
msvensson@pilot.mysql.com committed
545
select * into outfile "MYSQLTEST_VARDIR/tmp/spout" from test.t1;
546
insert into test.t1 values (concat(x, "2"), y+2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
547 548 549 550
end|
call into_outfile("ofile", 1)|
delete from t1|
drop procedure into_outfile|
551
drop procedure if exists into_dumpfile|
552 553 554
create procedure into_dumpfile(x char(16), y int)
begin
insert into test.t1 values (x, y);
msvensson@pilot.mysql.com's avatar
msvensson@pilot.mysql.com committed
555
select * into dumpfile "MYSQLTEST_VARDIR/tmp/spdump" from test.t1 limit 1;
556
insert into test.t1 values (concat(x, "2"), y+2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
557 558 559 560
end|
call into_dumpfile("dfile", 1)|
delete from t1|
drop procedure into_dumpfile|
561
drop procedure if exists create_select|
562 563 564
create procedure create_select(x char(16), y int)
begin
insert into test.t1 values (x, y);
565
create temporary table test.t3 select * from test.t1;
pem@mysql.com's avatar
pem@mysql.com committed
566
insert into test.t3 values (concat(x, "2"), y+2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
567 568 569
end|
call create_select("cs", 90)|
select * from t1, t3|
pem@mysql.com's avatar
pem@mysql.com committed
570 571 572
id	data	id	data
cs	90	cs	90
cs	90	cs2	92
573
drop table t3|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
574 575
delete from t1|
drop procedure create_select|
576
drop function if exists e|
577
create function e() returns double
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
578 579 580
return 2.7182818284590452354|
set @e = e()|
select e(), @e|
581
e()	@e
582
2.718281828459045	2.718281828459045
583
drop function if exists inc|
584
create function inc(i int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
585 586
return i+1|
select inc(1), inc(99), inc(-71)|
587 588
inc(1)	inc(99)	inc(-71)
2	100	-70
589
drop function if exists mul|
590
create function mul(x int, y int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
591 592
return x*y|
select mul(1,1), mul(3,5), mul(4711, 666)|
593 594
mul(1,1)	mul(3,5)	mul(4711, 666)
1	15	3137526
595
drop function if exists append|
596
create function append(s1 char(8), s2 char(8)) returns char(16)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
597 598
return concat(s1, s2)|
select append("foo", "bar")|
599 600
append("foo", "bar")
foobar
601
drop function if exists fac|
602 603
create function fac(n int unsigned) returns bigint unsigned
begin
604
declare f bigint unsigned default 1;
605 606 607 608 609
while n > 1 do
set f = f * n;
set n = n - 1;
end while;
return f;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
610 611
end|
select fac(1), fac(2), fac(5), fac(10)|
612 613
fac(1)	fac(2)	fac(5)	fac(10)
1	2	120	3628800
614
drop function if exists fun|
615
create function fun(d double, i int, u int unsigned) returns double
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
616 617
return mul(inc(i), fac(u)) / e()|
select fun(2.3, 3, 5)|
618
fun(2.3, 3, 5)
619
176.58213176229233
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
620 621 622
insert into t2 values (append("xxx", "yyy"), mul(4,3), e())|
insert into t2 values (append("a", "b"), mul(2,mul(3,4)), fun(1.7, 4, 6))|
select * from t2 where s = append("a", "b")|
623
s	i	d
624
ab	24	1324.3659882171924
625
select * from t2 where i = mul(4,3) or i = mul(mul(3,4),2) order by i|
626
s	i	d
627 628
xxxyyy	12	2.718281828459045
ab	24	1324.3659882171924
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
629
select * from t2 where d = e()|
630
s	i	d
631
xxxyyy	12	2.718281828459045
632
select * from t2 order by i|
633
s	i	d
634 635
xxxyyy	12	2.718281828459045
ab	24	1324.3659882171924
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
636 637 638 639 640 641
delete from t2|
drop function e|
drop function inc|
drop function mul|
drop function append|
drop function fun|
642
drop procedure if exists hndlr1|
643 644 645
create procedure hndlr1(val int)
begin
declare x int default 0;
646
declare foo condition for 1136;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
647 648
declare bar condition for sqlstate '42S98';        # Just for testing syntax
declare zip condition for sqlstate value '42S99';  # Just for testing syntax
649
declare continue handler for foo set x = 1;
650
insert into test.t1 values ("hndlr1", val, 2);  # Too many values
651 652 653
if (x) then
insert into test.t1 values ("hndlr1", val);   # This instead then
end if;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
654 655 656
end|
call hndlr1(42)|
select * from t1|
657 658
id	data
hndlr1	42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
659 660
delete from t1|
drop procedure hndlr1|
661
drop procedure if exists hndlr2|
662 663 664 665
create procedure hndlr2(val int)
begin
declare x int default 0;
begin
666 667
declare exit handler for sqlstate '21S01' set x = 1;
insert into test.t1 values ("hndlr2", val, 2); # Too many values
668 669
end;
insert into test.t1 values ("hndlr2", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
670 671 672
end|
call hndlr2(42)|
select * from t1|
673 674
id	data
hndlr2	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
675 676
delete from t1|
drop procedure hndlr2|
677
drop procedure if exists hndlr3|
678 679 680 681 682 683 684 685 686 687 688 689 690
create procedure hndlr3(val int)
begin
declare x int default 0;
declare continue handler for sqlexception        # Any error
begin
declare z int;
set z = 2 * val;
set x = 1;
end;
if val < 10 then
begin
declare y int;
set y = val + 10;
691
insert into test.t1 values ("hndlr3", y, 2);  # Too many values
692 693 694 695 696
if x then
insert into test.t1 values ("hndlr3", y);
end if;
end;
end if;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
697 698 699
end|
call hndlr3(3)|
select * from t1|
700 701
id	data
hndlr3	13
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
702 703 704
delete from t1|
drop procedure hndlr3|
create table t3 ( id   char(16), data int )|
705
drop procedure if exists hndlr4|
706 707 708 709
create procedure hndlr4()
begin
declare x int default 0;
declare val int;	                           # No default
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
710
declare continue handler for sqlstate '02000' set x=1;
711 712
select data into val from test.t3 where id='z' limit 1;  # No hits
insert into test.t3 values ('z', val);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
713 714 715
end|
call hndlr4()|
select * from t3|
716
id	data
717
z	NULL
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
718 719
drop table t3|
drop procedure hndlr4|
720
drop procedure if exists cur1|
721 722 723 724 725
create procedure cur1()
begin
declare a char(16);
declare b int;
declare c double;
726 727 728
declare done int default 0;
declare c cursor for select * from test.t2;
declare continue handler for sqlstate '02000' set done = 1;
729 730 731 732 733 734 735 736
open c;
repeat
fetch c into a, b, c;
if not done then
insert into test.t1 values (a, b+c);
end if;
until done end repeat;
close c;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
737 738 739 740
end|
insert into t2 values ("foo", 42, -1.9), ("bar", 3, 12.1), ("zap", 666, -3.14)|
call cur1()|
select * from t1|
741 742 743 744
id	data
foo	40
bar	15
zap	663
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
745 746
drop procedure cur1|
create table t3 ( s char(16), i int )|
747
drop procedure if exists cur2|
748 749 750
create procedure cur2()
begin
declare done int default 0;
751 752
declare c1 cursor for select id,data from test.t1 order by id,data;
declare c2 cursor for select i from test.t2 order by i;
753
declare continue handler for sqlstate '02000' set done = 1;
754 755 756 757 758 759
open c1;
open c2;
repeat
begin
declare a char(16);
declare b,c int;
760 761
fetch from c1 into a, b;
fetch next from c2 into c;
762 763 764 765 766 767 768 769 770 771 772
if not done then
if b < c then
insert into test.t3 values (a, b);
else
insert into test.t3 values (a, c);
end if;
end if;
end;
until done end repeat;
close c1;
close c2;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
773 774
end|
call cur2()|
775
select * from t3 order by i,s|
776 777
s	i
bar	3
778
foo	40
779
zap	663
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
780 781 782 783
delete from t1|
delete from t2|
drop table t3|
drop procedure cur2|
784
drop procedure if exists chistics|
785 786
create procedure chistics()
language sql
787
modifies sql data
788 789 790
not deterministic
sql security definer
comment 'Characteristics procedure test'
791 792
  insert into t1 values ("chistics", 1)|
show create procedure chistics|
793
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
794
chistics		CREATE DEFINER=`root`@`localhost` PROCEDURE `chistics`()
795 796
    MODIFIES SQL DATA
    COMMENT 'Characteristics procedure test'
797
insert into t1 values ("chistics", 1)	latin1	latin1_swedish_ci	latin1_swedish_ci
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
798 799
call chistics()|
select * from t1|
800 801
id	data
chistics	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
802
delete from t1|
803 804
alter procedure chistics sql security invoker|
show create procedure chistics|
805
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
806
chistics		CREATE DEFINER=`root`@`localhost` PROCEDURE `chistics`()
807
    MODIFIES SQL DATA
808 809
    SQL SECURITY INVOKER
    COMMENT 'Characteristics procedure test'
810
insert into t1 values ("chistics", 1)	latin1	latin1_swedish_ci	latin1_swedish_ci
811
drop procedure chistics|
812
drop function if exists chistics|
813 814 815 816 817
create function chistics() returns int
language sql
deterministic
sql security invoker
comment 'Characteristics procedure test'
818 819
  return 42|
show create function chistics|
820
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
821
chistics		CREATE DEFINER=`root`@`localhost` FUNCTION `chistics`() RETURNS int(11)
822 823 824
    DETERMINISTIC
    SQL SECURITY INVOKER
    COMMENT 'Characteristics procedure test'
825
return 42	latin1	latin1_swedish_ci	latin1_swedish_ci
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
826
select chistics()|
827 828
chistics()
42
829
alter function chistics
830 831
no sql
comment 'Characteristics function test'|
832
show create function chistics|
833
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
834
chistics		CREATE DEFINER=`root`@`localhost` FUNCTION `chistics`() RETURNS int(11)
835
    NO SQL
836 837 838
    DETERMINISTIC
    SQL SECURITY INVOKER
    COMMENT 'Characteristics function test'
839
return 42	latin1	latin1_swedish_ci	latin1_swedish_ci
840
drop function chistics|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
841 842
insert into t1 values ("foo", 1), ("bar", 2), ("zip", 3)|
set @@sql_mode = 'ANSI'|
843
drop procedure if exists modes$
844 845 846 847 848
create procedure modes(out c1 int, out c2 int)
begin
declare done int default 0;
declare x int;
declare c cursor for select data from t1;
849
declare continue handler for sqlstate '02000' set done = 1;
850 851 852 853 854 855 856 857 858 859
select 1 || 2 into c1;
set c2 = 0;
open c;
repeat
fetch c into x;
if not done then
set c2 = c2 + 1;
end if;
until done end repeat;
close c;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
860 861 862 863 864 865
end$
set @@sql_mode = ''|
set sql_select_limit = 1|
call modes(@c1, @c2)|
set sql_select_limit = default|
select @c1, @c2|
866 867
@c1	@c2
12	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
868 869
delete from t1|
drop procedure modes|
870 871 872 873 874 875 876 877 878 879
create database sp_db1|
drop database sp_db1|
create database sp_db2|
use sp_db2|
create table t3 ( s char(4), t int )|
insert into t3 values ("abcd", 42), ("dcba", 666)|
use test|
drop database sp_db2|
create database sp_db3|
use sp_db3|
880
drop procedure if exists dummy|
881 882 883 884 885 886
create procedure dummy(out x int)
set x = 42|
use test|
drop database sp_db3|
select type,db,name from mysql.proc where db = 'sp_db3'|
type	db	name
887
drop procedure if exists rc|
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
create procedure rc()
begin
delete from t1;
insert into t1 values ("a", 1), ("b", 2), ("c", 3);
end|
call rc()|
select row_count()|
row_count()
3
update t1 set data=42 where id = "b";
select row_count()|
row_count()
1
delete from t1|
select row_count()|
row_count()
3
delete from t1|
select row_count()|
row_count()
0
909 910 911 912 913
select * from t1|
id	data
select row_count()|
row_count()
-1
914
drop procedure rc|
915 916 917 918 919 920 921 922 923
drop function if exists f0|
drop function if exists f1|
drop function if exists f2|
drop function if exists f3|
drop function if exists f4|
drop function if exists f5|
drop function if exists f6|
drop function if exists f7|
drop function if exists f8|
924 925 926 927 928
drop function if exists f9|
drop function if exists f10|
drop function if exists f11|
drop function if exists f12_1|
drop function if exists f12_2|
929 930 931 932 933 934 935 936 937 938 939 940
drop view if exists v0|
drop view if exists v1|
drop view if exists v2|
delete from t1|
delete from t2|
insert into t1 values ("a", 1), ("b", 2) |
insert into t2 values ("a", 1, 1.0), ("b", 2, 2.0), ("c", 3, 3.0) |
create function f1() returns int
return (select sum(data) from t1)|
select f1()|
f1()
3
941
select id, f1() from t1 order by id|
942 943 944 945
id	f1()
a	3
b	3
create function f2() returns int
946
return (select data from t1 where data <= (select sum(data) from t1) order by data limit 1)|
947 948 949
select f2()|
f2()
1
950
select id, f2() from t1 order by id|
951 952 953 954 955 956 957 958 959 960 961 962 963 964
id	f2()
a	1
b	1
create function f3() returns int
begin
declare n int;
declare m int;
set n:= (select min(data) from t1);
set m:= (select max(data) from t1);
return n < m;
end|
select f3()|
f3()
1
965
select id, f3() from t1 order by id|
966 967 968 969 970 971
id	f3()
a	1
b	1
select f1(), f3()|
f1()	f3()
3	1
972
select id, f1(), f3() from t1 order by id|
973 974 975 976 977 978 979 980
id	f1()	f3()
a	3	1
b	3	1
create function f4() returns double 
return (select d from t1, t2 where t1.data = t2.i and t1.id= "b")|
select f4()|
f4()
2
981
select s, f4() from t2 order by s|
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998
s	f4()
a	2
b	2
c	2
create function f5(i int) returns int
begin
if i <= 0 then
return 0;
elseif i = 1  then
return (select count(*) from t1 where data = i);
else
return (select count(*) + f5( i - 1) from t1 where data = i);
end if;
end|
select f5(1)|
f5(1)
1
999 1000 1001 1002
select f5(2)|
ERROR HY000: Recursive stored functions and triggers are not allowed.
select f5(3)|
ERROR HY000: Recursive stored functions and triggers are not allowed.
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
create function f6() returns int
begin
declare n int;
set n:= f1();
return (select count(*) from t1 where data <= f7() and data <= n);
end|
create function f7() returns int
return (select sum(data) from t1 where data <= f1())|
select f6()|
f6()
2
1014
select id, f6() from t1 order by id|
1015 1016 1017 1018 1019 1020 1021
id	f6()
a	2
b	2
create view v1 (a) as select f1()|
select * from v1|
a
3
1022
select id, a from t1, v1 order by id|
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
id	a
a	3
b	3
select * from v1, v1 as v|
a	a
3	3
create view v2 (a) as select a*10 from v1|
select * from v2|
a
30
1033
select id, a from t1, v2 order by id|
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
id	a
a	30
b	30
select * from v1, v2|
a	a
3	30
create function f8 () returns int
return (select count(*) from v2)|
select *, f8() from v1|
a	f8()
3	1
drop function f1|
select * from v1|
1047
ERROR HY000: View 'test.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
1048 1049
create function f1() returns int
return (select sum(data) from t1) + (select sum(data) from v1)|
1050 1051 1052 1053 1054 1055
select f1()|
ERROR HY000: Recursive stored functions and triggers are not allowed.
select * from v1|
ERROR HY000: Recursive stored functions and triggers are not allowed.
select * from v2|
ERROR HY000: Recursive stored functions and triggers are not allowed.
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
drop function f1|
create function f1() returns int
return (select sum(data) from t1)|
create function f0() returns int
return (select * from (select 100) as r)|
select f0()|
f0()
100
select *, f0() from (select 1) as t|
1	f0()
1	100
create view v0 as select f0()|
select * from v0|
f0()
100
select *, f0() from v0|
f0()	f0()
100	100
1074
lock tables t1 read, t1 as t11 read|
1075 1076 1077
select f3()|
f3()
1
1078
select id, f3() from t1 as t11 order by id|
1079 1080 1081 1082 1083 1084 1085
id	f3()
a	1
b	1
select f0()|
f0()
100
select * from v0|
1086
ERROR HY000: Table 'v0' was not locked with LOCK TABLES
1087
select *, f0() from v0, (select 123) as d1|
1088
ERROR HY000: Table 'v0' was not locked with LOCK TABLES
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
select id, f3() from t1|
ERROR HY000: Table 't1' was not locked with LOCK TABLES
select f4()|
ERROR HY000: Table 't2' was not locked with LOCK TABLES
unlock tables|
lock tables v2 read, mysql.proc read|
select * from v2|
a
30
select * from v1|
a
3
1101
select * from v1, t1|
1102 1103 1104 1105
ERROR HY000: Table 't1' was not locked with LOCK TABLES
select f4()|
ERROR HY000: Table 't2' was not locked with LOCK TABLES
unlock tables|
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
create function f9() returns int
begin
declare a, b int;
drop temporary table if exists t3;
create temporary table t3 (id int);
insert into t3 values (1), (2), (3);
set a:= (select count(*) from t3);
set b:= (select count(*) from t3 t3_alias);
return a + b;
end|
select f9()|
f9()
6
select f9() from t1 limit 1|
f9()
6
create function f10() returns int
begin
drop temporary table if exists t3;
create temporary table t3 (id int);
insert into t3 select id from t4;
return (select count(*) from t3);
end|
select f10()|
ERROR 42S02: Table 'test.t4' doesn't exist
create table t4 as select 1 as id|
select f10()|
f10()
1
create function f11() returns int
begin
drop temporary table if exists t3;
create temporary table t3 (id int);
insert into t3 values (1), (2), (3);
return (select count(*) from t3 as a, t3 as b);
end|
select f11()|
ERROR HY000: Can't reopen table: 'a'
select f11() from t1|
ERROR HY000: Can't reopen table: 'a'
create function f12_1() returns int
begin
drop temporary table if exists t3;
create temporary table t3 (id int);
insert into t3 values (1), (2), (3);
return f12_2();
end|
create function f12_2() returns int
return (select count(*) from t3)|
drop temporary table t3|
select f12_1()|
malff/marcsql@weblab.(none)'s avatar
malff/marcsql@weblab.(none) committed
1157 1158
f12_1()
3
1159
select f12_1() from t1 limit 1|
malff/marcsql@weblab.(none)'s avatar
malff/marcsql@weblab.(none) committed
1160 1161
f12_1()
3
1162 1163 1164 1165 1166 1167 1168 1169 1170
drop function f0|
drop function f1|
drop function f2|
drop function f3|
drop function f4|
drop function f5|
drop function f6|
drop function f7|
drop function f8|
1171 1172 1173 1174 1175
drop function f9|
drop function f10|
drop function f11|
drop function f12_1|
drop function f12_2|
1176 1177 1178
drop view v0|
drop view v1|
drop view v2|
1179 1180
truncate table t1 |
truncate table t2 |
1181
drop table t4|
1182 1183
drop table if exists t3|
create table t3 (n int unsigned not null primary key, f bigint unsigned)|
1184 1185
drop procedure if exists ifac|
create procedure ifac(n int unsigned)
1186
begin
1187 1188 1189
declare i int unsigned default 1;
if n > 20 then
set n = 20;		# bigint overflow otherwise
1190
end if;
1191
while i <= n do
1192
begin
1193
insert into test.t3 values (i, fac(i));
1194 1195 1196
set i = i + 1;
end;
end while;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1197
end|
1198
call ifac(20)|
1199
select * from t3|
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
n	f
1	1
2	2
3	6
4	24
5	120
6	720
7	5040
8	40320
9	362880
10	3628800
11	39916800
12	479001600
13	6227020800
14	87178291200
15	1307674368000
16	20922789888000
17	355687428096000
18	6402373705728000
19	121645100408832000
20	2432902008176640000
1221
drop table t3|
1222
show function status like '%f%'|
1223 1224
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
test	fac	FUNCTION	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
1225 1226 1227
drop procedure ifac|
drop function fac|
show function status like '%f%'|
1228
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
1229 1230
drop table if exists t3|
create table t3 (
1231 1232 1233
i int unsigned not null primary key,
p bigint unsigned not null
)|
1234
insert into t3 values
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
( 0,   3), ( 1,   5), ( 2,   7), ( 3,  11), ( 4,  13),
( 5,  17), ( 6,  19), ( 7,  23), ( 8,  29), ( 9,  31),
(10,  37), (11,  41), (12,  43), (13,  47), (14,  53),
(15,  59), (16,  61), (17,  67), (18,  71), (19,  73),
(20,  79), (21,  83), (22,  89), (23,  97), (24, 101),
(25, 103), (26, 107), (27, 109), (28, 113), (29, 127),
(30, 131), (31, 137), (32, 139), (33, 149), (34, 151),
(35, 157), (36, 163), (37, 167), (38, 173), (39, 179),
(40, 181), (41, 191), (42, 193), (43, 197), (44, 199)|
drop procedure if exists opp|
create procedure opp(n bigint unsigned, out pp bool)
1246
begin
1247 1248 1249 1250 1251 1252 1253
declare r double;
declare b, s bigint unsigned default 0;
set r = sqrt(n);
again:
loop
if s = 45 then
set b = b+200, s = 0;
1254
else
1255 1256
begin
declare p bigint unsigned;
1257
select t.p into p from test.t3 t where t.i = s;
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
if b+p > r then
set pp = 1;
leave again;
end if;
if mod(n, b+p) = 0 then
set pp = 0;
leave again;
end if;
set s = s+1;
end;
1268
end if;
1269
end loop;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1270
end|
1271 1272
drop procedure if exists ip|
create procedure ip(m int unsigned)
1273
begin
1274 1275 1276 1277
declare p bigint unsigned;
declare i int unsigned;
set i=45, p=201;
while i < m do
1278
begin
1279 1280 1281
declare pp bool default 0;
call opp(p, pp);
if pp then
1282
insert into test.t3 values (i, p);
1283 1284 1285 1286 1287
set i = i+1;
end if;
set p = p+2;
end;
end while;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1288
end|
1289
show create procedure opp|
1290
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
1291
opp		CREATE DEFINER=`root`@`localhost` PROCEDURE `opp`(n bigint unsigned, out pp bool)
1292
begin
1293 1294 1295 1296 1297 1298 1299 1300
declare r double;
declare b, s bigint unsigned default 0;
set r = sqrt(n);
again:
loop
if s = 45 then
set b = b+200, s = 0;
else
1301
begin
1302
declare p bigint unsigned;
1303
select t.p into p from test.t3 t where t.i = s;
1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
if b+p > r then
set pp = 1;
leave again;
end if;
if mod(n, b+p) = 0 then
set pp = 0;
leave again;
end if;
set s = s+1;
end;
end if;
end loop;
1316
end	latin1	latin1_swedish_ci	latin1_swedish_ci
1317
show procedure status where name like '%p%' and db='test'|
1318 1319 1320
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
test	ip	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
test	opp	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
1321
call ip(200)|
1322
select * from t3 where i=45 or i=100 or i=199|
1323 1324 1325 1326
i	p
45	211
100	557
199	1229
1327
drop table t3|
1328 1329
drop procedure opp|
drop procedure ip|
1330
show procedure status where name like '%p%' and db='test'|
1331
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
1332 1333 1334 1335 1336
drop procedure if exists bar|
create procedure bar(x char(16), y int)
comment "111111111111" sql security invoker
insert into test.t1 values (x, y)|
show procedure status like 'bar'|
1337 1338
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
test	bar	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	INVOKER	111111111111	latin1	latin1_swedish_ci	latin1_swedish_ci
1339 1340 1341 1342
alter procedure bar comment "2222222222" sql security definer|
alter procedure bar comment "3333333333"|
alter procedure bar|
show create procedure bar|
1343
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
1344
bar		CREATE DEFINER=`root`@`localhost` PROCEDURE `bar`(x char(16), y int)
1345
    COMMENT '3333333333'
1346
insert into test.t1 values (x, y)	latin1	latin1_swedish_ci	latin1_swedish_ci
1347
show procedure status like 'bar'|
1348 1349
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
test	bar	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	3333333333	latin1	latin1_swedish_ci	latin1_swedish_ci
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
drop procedure bar|
drop procedure if exists p1|
create procedure p1 ()
select (select s1 from t3) from t3|
create table t3 (s1 int)|
call p1()|
(select s1 from t3)
insert into t3 values (1)|
call p1()|
(select s1 from t3)
1
drop procedure p1|
drop table t3|
drop function if exists foo|
create function `foo` () returns int
return 5|
select `foo` ()|
`foo` ()
5
drop function `foo`|
drop function if exists t1max|
create function t1max() returns int
1372
begin
1373 1374 1375
declare x int;
select max(data) into x from t1;
return x;
1376
end|
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
insert into t1 values ("foo", 3), ("bar", 2), ("zip", 5), ("zap", 1)|
select t1max()|
t1max()
5
drop function t1max|
create table t3 (
v char(16) not null primary key,
c int unsigned not null
)|
create function getcount(s char(16)) returns int
1387
begin
1388 1389 1390 1391 1392 1393 1394 1395
declare x int;
select count(*) into x from t3 where v = s;
if x = 0 then
insert into t3 values (s, 1);
else
update t3 set c = c+1 where v = s;
end if;
return x;
1396
end|
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
select * from t1 where data = getcount("bar")|
id	data
zap	1
select * from t3|
v	c
bar	4
select getcount("zip")|
getcount("zip")
0
select getcount("zip")|
getcount("zip")
1408 1409
1
select * from t3|
1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
v	c
bar	4
zip	2
select getcount(id) from t1 where data = 3|
getcount(id)
0
select getcount(id) from t1 where data = 5|
getcount(id)
1
select * from t3|
v	c
bar	4
zip	3
foo	1
1424
drop table t3|
1425
drop function getcount|
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
drop table if exists t3|
drop procedure if exists h_ee|
drop procedure if exists h_es|
drop procedure if exists h_en|
drop procedure if exists h_ew|
drop procedure if exists h_ex|
drop procedure if exists h_se|
drop procedure if exists h_ss|
drop procedure if exists h_sn|
drop procedure if exists h_sw|
drop procedure if exists h_sx|
drop procedure if exists h_ne|
drop procedure if exists h_ns|
drop procedure if exists h_nn|
drop procedure if exists h_we|
drop procedure if exists h_ws|
drop procedure if exists h_ww|
drop procedure if exists h_xe|
drop procedure if exists h_xs|
drop procedure if exists h_xx|
create table t3 (a smallint primary key)|
insert into t3 (a) values (1)|
create procedure h_ee()
deterministic
begin
1451
declare continue handler for 1062 -- ER_DUP_ENTRY
1452 1453
select 'Outer (bad)' as 'h_ee';
begin
1454
declare continue handler for 1062 -- ER_DUP_ENTRY
1455 1456 1457 1458 1459 1460 1461
select 'Inner (good)' as 'h_ee';
insert into t3 values (1);
end;
end|
create procedure h_es()
deterministic
begin
1462
declare continue handler for 1062 -- ER_DUP_ENTRY
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
select 'Outer (good)' as 'h_es';
begin
-- integrity constraint violation
declare continue handler for sqlstate '23000'
      select 'Inner (bad)' as 'h_es';
insert into t3 values (1);
end;
end|
create procedure h_en()
deterministic
begin
declare continue handler for 1329 -- ER_SP_FETCH_NO_DATA
select 'Outer (good)' as 'h_en';
begin
declare x int;
declare continue handler for sqlstate '02000' -- no data
select 'Inner (bad)' as 'h_en';
select a into x from t3 where a = 42;
end;
end|
create procedure h_ew()
deterministic
begin
declare continue handler for 1264 -- ER_WARN_DATA_OUT_OF_RANGE
select 'Outer (good)' as 'h_ew';
begin
declare continue handler for sqlwarning
select 'Inner (bad)' as 'h_ew';
insert into t3 values (123456789012);
end;
delete from t3;
insert into t3 values (1);
end|
create procedure h_ex()
deterministic
begin
1499
declare continue handler for 1062 -- ER_DUP_ENTRY
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
select 'Outer (good)' as 'h_ex';
begin
declare continue handler for sqlexception
select 'Inner (bad)' as 'h_ex';
insert into t3 values (1);
end;
end|
create procedure h_se()
deterministic
begin
-- integrity constraint violation
declare continue handler for sqlstate '23000' 
select 'Outer (bad)' as 'h_se';
begin
1514
declare continue handler for 1062 -- ER_DUP_ENTRY
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
select 'Inner (good)' as 'h_se';
insert into t3 values (1);
end;
end|
create procedure h_ss()
deterministic
begin
-- integrity constraint violation
declare continue handler for sqlstate '23000' 
select 'Outer (bad)' as 'h_ss';
begin
-- integrity constraint violation
declare continue handler for sqlstate '23000' 
select 'Inner (good)' as 'h_ss';
insert into t3 values (1);
end;
end|
create procedure h_sn()
deterministic
begin
-- Note: '02000' is more specific than NOT FOUND ;
--       there might be other not found states 
declare continue handler for sqlstate '02000' -- no data
select 'Outer (good)' as 'h_sn';
begin
declare x int;
declare continue handler for not found
select 'Inner (bad)' as 'h_sn';
select a into x from t3 where a = 42;
end;
end|
create procedure h_sw()
deterministic
begin
-- data exception - numeric value out of range
declare continue handler for sqlstate '22003'
    select 'Outer (good)' as 'h_sw';
begin
declare continue handler for sqlwarning
select 'Inner (bad)' as 'h_sw';
insert into t3 values (123456789012);
end;
delete from t3;
insert into t3 values (1);
end|
create procedure h_sx()
deterministic
begin
-- integrity constraint violation
declare continue handler for sqlstate '23000' 
select 'Outer (good)' as 'h_sx';
begin
declare continue handler for sqlexception
select 'Inner (bad)' as 'h_sx';
insert into t3 values (1);
end;
end|
create procedure h_ne()
deterministic
begin
declare continue handler for not found
select 'Outer (bad)' as 'h_ne';
begin
declare x int;
declare continue handler for 1329 -- ER_SP_FETCH_NO_DATA
select 'Inner (good)' as 'h_ne';
select a into x from t3 where a = 42;
end;
end|
create procedure h_ns()
deterministic
begin
declare continue handler for not found
select 'Outer (bad)' as 'h_ns';
begin
declare x int;
declare continue handler for sqlstate '02000' -- no data
select 'Inner (good)' as 'h_ns';
select a into x from t3 where a = 42;
end;
end|
create procedure h_nn()
deterministic
begin
declare continue handler for not found
select 'Outer (bad)' as 'h_nn';
begin
declare x int;
declare continue handler for not found
select 'Inner (good)' as 'h_nn';
select a into x from t3 where a = 42;
end;
end|
create procedure h_we()
deterministic
begin
declare continue handler for sqlwarning
select 'Outer (bad)' as 'h_we';
begin
declare continue handler for 1264 -- ER_WARN_DATA_OUT_OF_RANGE
select 'Inner (good)' as 'h_we';
insert into t3 values (123456789012);
end;
delete from t3;
insert into t3 values (1);
end|
create procedure h_ws()
deterministic
begin
declare continue handler for sqlwarning
select 'Outer (bad)' as 'h_ws';
begin
-- data exception - numeric value out of range
declare continue handler for sqlstate '22003'
      select 'Inner (good)' as 'h_ws';
insert into t3 values (123456789012);
end;
delete from t3;
insert into t3 values (1);
end|
create procedure h_ww()
deterministic
begin
declare continue handler for sqlwarning
select 'Outer (bad)' as 'h_ww';
begin
declare continue handler for sqlwarning
select 'Inner (good)' as 'h_ww';
insert into t3 values (123456789012);
end;
delete from t3;
insert into t3 values (1);
end|
create procedure h_xe()
deterministic
begin
declare continue handler for sqlexception
select 'Outer (bad)' as 'h_xe';
begin
1654
declare continue handler for 1062 -- ER_DUP_ENTRY
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758
select 'Inner (good)' as 'h_xe';
insert into t3 values (1);
end;
end|
create procedure h_xs()
deterministic
begin
declare continue handler for sqlexception
select 'Outer (bad)' as 'h_xs';
begin
-- integrity constraint violation
declare continue handler for sqlstate '23000'
      select 'Inner (good)' as 'h_xs';
insert into t3 values (1);
end;
end|
create procedure h_xx()
deterministic
begin
declare continue handler for sqlexception
select 'Outer (bad)' as 'h_xx';
begin
declare continue handler for sqlexception
select 'Inner (good)' as 'h_xx';
insert into t3 values (1);
end;
end|
call h_ee()|
h_ee
Inner (good)
call h_es()|
h_es
Outer (good)
call h_en()|
h_en
Outer (good)
call h_ew()|
h_ew
Outer (good)
call h_ex()|
h_ex
Outer (good)
call h_se()|
h_se
Inner (good)
call h_ss()|
h_ss
Inner (good)
call h_sn()|
h_sn
Outer (good)
call h_sw()|
h_sw
Outer (good)
call h_sx()|
h_sx
Outer (good)
call h_ne()|
h_ne
Inner (good)
call h_ns()|
h_ns
Inner (good)
call h_nn()|
h_nn
Inner (good)
call h_we()|
h_we
Inner (good)
call h_ws()|
h_ws
Inner (good)
call h_ww()|
h_ww
Inner (good)
call h_xe()|
h_xe
Inner (good)
call h_xs()|
h_xs
Inner (good)
call h_xx()|
h_xx
Inner (good)
drop table t3|
drop procedure h_ee|
drop procedure h_es|
drop procedure h_en|
drop procedure h_ew|
drop procedure h_ex|
drop procedure h_se|
drop procedure h_ss|
drop procedure h_sn|
drop procedure h_sw|
drop procedure h_sx|
drop procedure h_ne|
drop procedure h_ns|
drop procedure h_nn|
drop procedure h_we|
drop procedure h_ws|
drop procedure h_ww|
drop procedure h_xe|
drop procedure h_xs|
drop procedure h_xx|
1759 1760 1761 1762 1763 1764 1765
drop procedure if exists bug822|
create procedure bug822(a_id char(16), a_data int)
begin
declare n int;
select count(*) into n from t1 where id = a_id and data = a_data;
if n = 0 then
insert into t1 (id, data) values (a_id, a_data);
1766 1767
end if;
end|
1768 1769 1770 1771
delete from t1|
call bug822('foo', 42)|
call bug822('foo', 42)|
call bug822('bar', 666)|
1772
select * from t1 order by data|
1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
id	data
foo	42
bar	666
delete from t1|
drop procedure bug822|
drop procedure if exists bug1495|
create procedure bug1495()
begin
declare x int;
select data into x from t1 order by id limit 1;
if x > 10 then
insert into t1 values ("less", x-10);
else
insert into t1 values ("more", x+10);
end if;
end|
insert into t1 values ('foo', 12)|
call bug1495()|
delete from t1 where id='foo'|
insert into t1 values ('bar', 7)|
call bug1495()|
delete from t1 where id='bar'|
1795
select * from t1 order by data|
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814
id	data
less	2
more	17
delete from t1|
drop procedure bug1495|
drop procedure if exists bug1547|
create procedure bug1547(s char(16))
begin
declare x int;
select data into x from t1 where s = id limit 1;
if x > 10 then
insert into t1 values ("less", x-10);
else
insert into t1 values ("more", x+10);
end if;
end|
insert into t1 values ("foo", 12), ("bar", 7)|
call bug1547("foo")|
call bug1547("bar")|
1815
select * from t1 order by id|
1816 1817
id	data
bar	7
1818
foo	12
1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
less	2
more	17
delete from t1|
drop procedure bug1547|
drop table if exists t70|
create table t70 (s1 int,s2 int)|
insert into t70 values (1,2)|
drop procedure if exists bug1656|
create procedure bug1656(out p1 int, out p2 int)
select * into p1, p1 from t70|
call bug1656(@1, @2)|
select @1, @2|
@1	@2
2	NULL
drop table t70|
drop procedure bug1656|
create table t3(a int)|
drop procedure if exists bug1862|
create procedure bug1862()
begin
insert into t3 values(2);    
flush tables;
end|
call bug1862()|
call bug1862()|
select * from t3|
a
2
2
drop table t3|
drop procedure bug1862|
drop procedure if exists bug1874|
create procedure bug1874()
begin
declare x int;
declare y double;
select max(data) into x from t1;
insert into t2 values ("max", x, 0);
select min(data) into x from t1;
insert into t2 values ("min", x, 0);
select sum(data) into x from t1;
insert into t2 values ("sum", x, 0);
select avg(data) into y from t1;
insert into t2 values ("avg", 0, y);
end|
insert into t1 (data) values (3), (1), (5), (9), (4)|
call bug1874()|
1866
select * from t2 order by i|
1867
s	i	d
1868
avg	0	4.4
1869
min	1	0
1870
max	9	0
1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
sum	22	0
delete from t1|
delete from t2|
drop procedure bug1874|
drop procedure if exists bug2260|
create procedure bug2260()
begin
declare v1 int;
declare c1 cursor for select data from t1;
declare continue handler for not found set @x2 = 1;
open c1;
fetch c1 into v1;
set @x2 = 2;
close c1;
end|
call bug2260()|
select @x2|
@x2
2
drop procedure bug2260|
1891 1892 1893
drop procedure if exists bug2267_1|
create procedure bug2267_1()
begin
1894
show procedure status where db='test';
1895 1896 1897 1898
end|
drop procedure if exists bug2267_2|
create procedure bug2267_2()
begin
1899
show function status where db='test';
1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913
end|
drop procedure if exists bug2267_3|
create procedure bug2267_3()
begin
show create procedure bug2267_1;
end|
drop procedure if exists bug2267_4|
drop function if exists bug2267_4|
create procedure bug2267_4()
begin
show create function bug2267_4;
end|
create function bug2267_4() returns int return 100|
call bug2267_1()|
1914 1915 1916 1917 1918
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
test	bug2267_1	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
test	bug2267_2	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
test	bug2267_3	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
test	bug2267_4	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
1919
call bug2267_2()|
1920 1921
Db	Name	Type	Definer	Modified	Created	Security_type	Comment	character_set_client	collation_connection	Database Collation
test	bug2267_4	FUNCTION	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER		latin1	latin1_swedish_ci	latin1_swedish_ci
1922
call bug2267_3()|
1923
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
1924
bug2267_1		CREATE DEFINER=`root`@`localhost` PROCEDURE `bug2267_1`()
1925
begin
1926
show procedure status where db='test';
1927
end	latin1	latin1_swedish_ci	latin1_swedish_ci
1928
call bug2267_4()|
1929
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
1930
bug2267_4		CREATE DEFINER=`root`@`localhost` FUNCTION `bug2267_4`() RETURNS int(11)
1931
return 100	latin1	latin1_swedish_ci	latin1_swedish_ci
1932 1933 1934 1935 1936
drop procedure bug2267_1|
drop procedure bug2267_2|
drop procedure bug2267_3|
drop procedure bug2267_4|
drop function bug2267_4|
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947
drop procedure if exists bug2227|
create procedure bug2227(x int)
begin
declare y float default 2.6;
declare z char(16) default "zzz";
select 1.3, x, y, 42, z;
end|
call bug2227(9)|
1.3	x	y	42	z
1.3	9	2.6	42	zzz
drop procedure bug2227|
1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959
drop procedure if exists bug2614|
create procedure bug2614()
begin
drop table if exists t3;
create table t3 (id int default '0' not null);
insert into t3 select 12;
insert into t3 select * from t3;
end|
call bug2614()|
call bug2614()|
drop table t3|
drop procedure bug2614|
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
drop function if exists bug2674|
create function bug2674() returns int
return @@sort_buffer_size|
set @osbs = @@sort_buffer_size|
set @@sort_buffer_size = 262000|
select bug2674()|
bug2674()
262000
drop function bug2674|
set @@sort_buffer_size = @osbs|
drop procedure if exists bug3259_1 |
create procedure bug3259_1 () begin end|
drop procedure if exists BUG3259_2 |
create procedure BUG3259_2 () begin end|
drop procedure if exists Bug3259_3 |
create procedure Bug3259_3 () begin end|
call BUG3259_1()|
call BUG3259_1()|
call bug3259_2()|
call Bug3259_2()|
call bug3259_3()|
call bUG3259_3()|
drop procedure bUg3259_1|
drop procedure BuG3259_2|
drop procedure BUG3259_3|
drop function if exists bug2772|
create function bug2772() returns char(10) character set latin2
return 'a'|
select bug2772()|
bug2772()
a
drop function bug2772|
drop procedure if exists bug2776_1|
create procedure bug2776_1(out x int)
begin
declare v int;
set v = default;
set x = v;
end|
drop procedure if exists bug2776_2|
create procedure bug2776_2(out x int)
begin
declare v int default 42;
set v = default;
set x = v;
end|
set @x = 1|
call bug2776_1(@x)|
select @x|
@x
NULL
call bug2776_2(@x)|
select @x|
@x
42
drop procedure bug2776_1|
drop procedure bug2776_2|
create table t3 (s1 smallint)|
insert into t3 values (123456789012)|
Warnings:
2020
Warning	1264	Out of range value for column 's1' at row 1
2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
drop procedure if exists bug2780|
create procedure bug2780()
begin
declare exit handler for sqlwarning set @x = 1; 
set @x = 0;
insert into t3 values (123456789012);
insert into t3 values (0);
end|
call bug2780()|
select @x|
@x
1
select * from t3|
s1
32767
32767
drop procedure bug2780|
drop table t3|
create table t3 (content varchar(10) )|
insert into t3 values ("test1")|
insert into t3 values ("test2")|
create table t4 (f1 int, rc int, t3 int)|
drop procedure if exists bug1863|
create procedure bug1863(in1 int)
begin 
declare ind int default 0;
declare t1 int;
declare t2 int;
declare t3 int;
declare rc int default 0;
declare continue handler for 1065 set rc = 1;
drop temporary table if exists temp_t1;
create temporary table temp_t1 (
f1 int auto_increment, f2 varchar(20), primary key (f1)
);
insert into temp_t1 (f2) select content from t3;
select f2 into t3 from temp_t1 where f1 = 10;
if (rc) then
insert into t4 values (1, rc, t3);
end if;
insert into t4 values (2, rc, t3);
end|
call bug1863(10)|
call bug1863(10)|
select * from t4|
f1	rc	t3
2	0	NULL
2	0	NULL
drop procedure bug1863|
drop temporary table temp_t1;
drop table t3, t4|
create table t3 ( 
OrderID  int not null,
MarketID int,
2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086
primary key (OrderID)
)|
create table t4 ( 
MarketID int not null,
Market varchar(60),
Status char(1),
primary key (MarketID)
)|
insert t3 (OrderID,MarketID) values (1,1)|
insert t3 (OrderID,MarketID) values (2,2)|
insert t4 (MarketID,Market,Status) values (1,"MarketID One","A")|
insert t4 (MarketID,Market,Status) values (2,"MarketID Two","A")|
2087
drop procedure if exists bug2656_1|
2088 2089 2090 2091 2092 2093 2094
create procedure bug2656_1()
begin 
select
m.Market
from  t4 m JOIN t3 o 
ON o.MarketID != 1 and o.MarketID = m.MarketID;
end |
2095
drop procedure if exists bug2656_2|
2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119
create procedure bug2656_2()
begin 
select
m.Market
from  
t4 m, t3 o
where       
m.MarketID != 1 and m.MarketID = o.MarketID;
end |
call bug2656_1()|
Market
MarketID Two
call bug2656_1()|
Market
MarketID Two
call bug2656_2()|
Market
MarketID Two
call bug2656_2()|
Market
MarketID Two
drop procedure bug2656_1|
drop procedure bug2656_2|
drop table t3, t4|
2120
drop procedure if exists bug3426|
2121 2122 2123 2124 2125 2126 2127 2128 2129 2130
create procedure bug3426(in_time int unsigned, out x int)
begin
if in_time is null then
set @stamped_time=10;
set x=1;
else
set @stamped_time=in_time;
set x=2;
end if;
end|
2131
set time_zone='+03:00';
2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
call bug3426(1000, @i)|
select @i, from_unixtime(@stamped_time, '%d-%m-%Y %h:%i:%s') as time|
@i	time
2	01-01-1970 03:16:40
call bug3426(NULL, @i)|
select @i, from_unixtime(@stamped_time, '%d-%m-%Y %h:%i:%s') as time|
@i	time
1	01-01-1970 03:00:10
alter procedure bug3426 sql security invoker|
call bug3426(NULL, @i)|
select @i, from_unixtime(@stamped_time, '%d-%m-%Y %h:%i:%s') as time|
@i	time
1	01-01-1970 03:00:10
call bug3426(1000, @i)|
select @i, from_unixtime(@stamped_time, '%d-%m-%Y %h:%i:%s') as time|
@i	time
2	01-01-1970 03:16:40
drop procedure bug3426|
create table t3 (
id int unsigned auto_increment not null primary key,
title VARCHAR(200),
body text,
fulltext (title,body)
)|
insert into t3 (title,body) values
('MySQL Tutorial','DBMS stands for DataBase ...'),
('How To Use MySQL Well','After you went through a ...'),
('Optimizing MySQL','In this tutorial we will show ...'),
('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'),
('MySQL vs. YourSQL','In the following database comparison ...'),
('MySQL Security','When configured properly, MySQL ...')|
2163
drop procedure if exists bug3734 |
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174
create procedure bug3734 (param1 varchar(100))
select * from t3 where match (title,body) against (param1)|
call bug3734('database')|
id	title	body
5	MySQL vs. YourSQL	In the following database comparison ...
1	MySQL Tutorial	DBMS stands for DataBase ...
call bug3734('Security')|
id	title	body
6	MySQL Security	When configured properly, MySQL ...
drop procedure bug3734|
drop table t3|
2175
drop procedure if exists bug3863|
2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191
create procedure bug3863()
begin
set @a = 0;
while @a < 5 do
set @a = @a + 1;
end while;
end|
call bug3863()|
select @a|
@a
5
call bug3863()|
select @a|
@a
5
drop procedure bug3863|
2192 2193 2194 2195 2196 2197 2198
create table t3 (
id int(10) unsigned not null default 0,
rid int(10) unsigned not null default 0,
msg text not null,
primary key (id),
unique key rid (rid, id)
)|
2199
drop procedure if exists bug2460_1|
2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222
create procedure bug2460_1(in v int)
begin
( select n0.id from t3 as n0 where n0.id = v )
union
( select n0.id from t3 as n0, t3 as n1
where n0.id = n1.rid and n1.id = v )
union
( select n0.id from t3 as n0, t3 as n1, t3 as n2
where n0.id = n1.rid and n1.id = n2.rid and n2.id = v );
end|
call bug2460_1(2)|
id
call bug2460_1(2)|
id
insert into t3 values (1, 1, 'foo'), (2, 1, 'bar'), (3, 1, 'zip zap')|
call bug2460_1(2)|
id
2
1
call bug2460_1(2)|
id
2
1
2223
drop procedure if exists bug2460_2|
2224 2225 2226
create procedure bug2460_2()
begin
drop table if exists t3;
2227
create temporary table t3 (s1 int);
2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
insert into t3 select 1 union select 1;
end|
call bug2460_2()|
call bug2460_2()|
select * from t3|
s1
1
drop procedure bug2460_1|
drop procedure bug2460_2|
drop table t3|
2238
set @@sql_mode = ''|
2239
drop procedure if exists bug2564_1|
2240 2241 2242 2243
create procedure bug2564_1()
comment 'Joe''s procedure'
  insert into `t1` values ("foo", 1)|
set @@sql_mode = 'ANSI_QUOTES'|
2244
drop procedure if exists bug2564_2|
2245 2246 2247
create procedure bug2564_2()
insert into "t1" values ('foo', 1)|
set @@sql_mode = ''$
2248
drop function if exists bug2564_3$
2249 2250 2251
create function bug2564_3(x int, y int) returns int
return x || y$
set @@sql_mode = 'ANSI'$
2252
drop function if exists bug2564_4$
2253 2254 2255 2256
create function bug2564_4(x int, y int) returns int
return x || y$
set @@sql_mode = ''|
show create procedure bug2564_1|
2257
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
2258
bug2564_1		CREATE DEFINER=`root`@`localhost` PROCEDURE `bug2564_1`()
2259
    COMMENT 'Joe''s procedure'
2260
insert into `t1` values ("foo", 1)	latin1	latin1_swedish_ci	latin1_swedish_ci
2261
show create procedure bug2564_2|
2262
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
2263
bug2564_2	ANSI_QUOTES	CREATE DEFINER="root"@"localhost" PROCEDURE "bug2564_2"()
2264
insert into "t1" values ('foo', 1)	latin1	latin1_swedish_ci	latin1_swedish_ci
2265
show create function bug2564_3|
2266
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
2267
bug2564_3		CREATE DEFINER=`root`@`localhost` FUNCTION `bug2564_3`(x int, y int) RETURNS int(11)
2268
return x || y	latin1	latin1_swedish_ci	latin1_swedish_ci
2269
show create function bug2564_4|
2270
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
2271
bug2564_4	REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI	CREATE DEFINER="root"@"localhost" FUNCTION "bug2564_4"(x int, y int) RETURNS int(11)
2272
return x || y	latin1	latin1_swedish_ci	latin1_swedish_ci
2273 2274 2275 2276
drop procedure bug2564_1|
drop procedure bug2564_2|
drop function bug2564_3|
drop function bug2564_4|
2277
drop function if exists bug3132|
2278 2279 2280 2281 2282 2283 2284
create function bug3132(s char(20)) returns char(50)
return concat('Hello, ', s, '!')|
select bug3132('Bob') union all select bug3132('Judy')|
bug3132('Bob')
Hello, Bob!
Hello, Judy!
drop function bug3132|
2285
drop procedure if exists bug3843|
2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
create procedure bug3843()
analyze table t1|
call bug3843()|
Table	Op	Msg_type	Msg_text
test.t1	analyze	status	OK
call bug3843()|
Table	Op	Msg_type	Msg_text
test.t1	analyze	status	Table is already up to date
select 1+2|
1+2
3
drop procedure bug3843|
2298 2299
create table t3 ( s1 char(10) )|
insert into t3 values ('a'), ('b')|
2300
drop procedure if exists bug3368|
2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
create procedure bug3368(v char(10))
begin
select group_concat(v) from t3;
end|
call bug3368('x')|
group_concat(v)
x,x
call bug3368('yz')|
group_concat(v)
yz,yz
drop procedure bug3368|
drop table t3|
2313 2314
create table t3 (f1 int, f2 int)|
insert into t3 values (1,1)|
2315
drop procedure if exists bug4579_1|
2316 2317 2318 2319 2320 2321 2322
create procedure bug4579_1 ()
begin
declare sf1 int;
select f1 into sf1 from t3 where f1=1 and f2=1;
update t3 set f2 = f2 + 1 where f1=1 and f2=1;
call bug4579_2();
end|
2323
drop procedure if exists bug4579_2|
2324 2325 2326 2327 2328 2329 2330 2331 2332
create procedure bug4579_2 ()
begin
end|
call bug4579_1()|
call bug4579_1()|
call bug4579_1()|
drop procedure bug4579_1|
drop procedure bug4579_2|
drop table t3|
2333 2334 2335 2336 2337 2338 2339 2340 2341 2342
drop procedure if exists bug2773|
create function bug2773() returns int return null|
create table t3 as select bug2773()|
show create table t3|
Table	Create Table
t3	CREATE TABLE `t3` (
  `bug2773()` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t3|
drop function bug2773|
2343 2344 2345 2346 2347 2348
drop procedure if exists bug3788|
create function bug3788() returns date return cast("2005-03-04" as date)|
select bug3788()|
bug3788()
2005-03-04
drop function bug3788|
2349
create function bug3788() returns binary(1) return 5|
2350 2351 2352 2353
select bug3788()|
bug3788()
5
drop function bug3788|
2354 2355
create table t3 (f1 int, f2 int, f3 int)|
insert into t3 values (1,1,1)|
2356
drop procedure if exists bug4726|
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372
create procedure bug4726()
begin
declare tmp_o_id INT;
declare tmp_d_id INT default 1;
while tmp_d_id <= 2 do
begin
select f1 into tmp_o_id from t3 where f2=1 and f3=1;
set tmp_d_id = tmp_d_id + 1;
end;
end while;
end|
call bug4726()|
call bug4726()|
call bug4726()|
drop procedure bug4726|
drop table t3|
2373
drop procedure if exists bug4902|
2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384
create procedure bug4902()
begin
show charset like 'foo';
show collation like 'foo';
show create table t1;
show create database test;
show databases like 'foo';
show errors;
show columns from t1;
show keys from t1;
show open tables like 'foo';
2385 2386
# Removed because result will differ in embedded mode.
#show privileges;
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396
show status like 'foo';
show tables like 'foo';
show variables like 'foo';
show warnings;
end|
call bug4902()|
Charset	Description	Default collation	Maxlen
Collation	Charset	Id	Default	Compiled	Sortlen
Table	Create Table
t1	CREATE TABLE `t1` (
2397
  `id` char(16) NOT NULL DEFAULT '',
2398
  `data` int(11) NOT NULL
2399 2400 2401 2402 2403 2404
) ENGINE=MyISAM DEFAULT CHARSET=latin1
Database	Create Database
test	CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET latin1 */
Database (foo)
Level	Code	Message
Field	Type	Null	Key	Default	Extra
2405
id	char(16)	NO			
2406
data	int(11)	NO		NULL	
2407 2408 2409
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment
Database	Table	In_use	Name_locked
Variable_name	Value
2410
Tables_in_test (foo)
2411 2412 2413 2414 2415 2416 2417
Variable_name	Value
Level	Code	Message
call bug4902()|
Charset	Description	Default collation	Maxlen
Collation	Charset	Id	Default	Compiled	Sortlen
Table	Create Table
t1	CREATE TABLE `t1` (
2418
  `id` char(16) NOT NULL DEFAULT '',
2419
  `data` int(11) NOT NULL
2420 2421 2422 2423 2424 2425
) ENGINE=MyISAM DEFAULT CHARSET=latin1
Database	Create Database
test	CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET latin1 */
Database (foo)
Level	Code	Message
Field	Type	Null	Key	Default	Extra
2426
id	char(16)	NO			
2427
data	int(11)	NO		NULL	
2428 2429
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment
Database	Table	In_use	Name_locked
2430 2431 2432 2433 2434 2435 2436
Variable_name	Value
Tables_in_test (foo)
Variable_name	Value
Level	Code	Message
drop procedure bug4902|
drop procedure if exists bug4904|
create procedure bug4904()
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2437
begin
2438 2439
declare continue handler for sqlstate 'HY000' begin end;
create table t2 as select * from t3;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2440
end|
2441 2442 2443 2444 2445 2446
call bug4904()|
ERROR 42S02: Table 'test.t3' doesn't exist
drop procedure bug4904|
create table t3 (s1 char character set latin1, s2 char character set latin2)|
drop procedure if exists bug4904|
create procedure bug4904 ()
2447
begin
2448 2449
declare continue handler for sqlstate 'HY000' begin end;
select s1 from t3 union select s2 from t3; 
2450
end|
2451 2452 2453 2454 2455
call bug4904()|
drop procedure bug4904|
drop table t3|
drop procedure if exists bug336|
create procedure bug336(out y int)
2456 2457
begin
declare x int;
2458 2459
set x = (select sum(t.data) from test.t1 t);
set y = x;
2460
end|
2461 2462 2463 2464 2465
insert into t1 values ("a", 2), ("b", 3)|
call bug336(@y)|
select @y|
@y
5
2466
delete from t1|
2467 2468 2469
drop procedure bug336|
drop procedure if exists bug3157|
create procedure bug3157()
2470
begin
2471 2472 2473 2474 2475
if exists(select * from t1) then
set @n= @n + 1;
end if;
if (select count(*) from t1) then
set @n= @n + 1;
2476
end if;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2477
end|
2478 2479 2480 2481 2482 2483 2484 2485 2486 2487
set @n = 0|
insert into t1 values ("a", 1)|
call bug3157()|
select @n|
@n
2
delete from t1|
drop procedure bug3157|
drop procedure if exists bug5251|
create procedure bug5251()
2488
begin
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510
end|
select created into @c1 from mysql.proc
where db='test' and name='bug5251'|
alter procedure bug5251 comment 'foobar'|
select count(*) from mysql.proc
where  db='test' and name='bug5251' and created = @c1|
count(*)
1
drop procedure bug5251|
drop procedure if exists bug5251|
create procedure bug5251()
checksum table t1|
call bug5251()|
Table	Checksum
test.t1	0
call bug5251()|
Table	Checksum
test.t1	0
drop procedure bug5251|
drop procedure if exists bug5287|
create procedure bug5287(param1 int)
label1:
2511
begin
2512 2513 2514 2515
declare c cursor for select 5;
loop
if param1 >= 0 then
leave label1;
2516
end if;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2517
end loop;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2518
end|
2519 2520 2521 2522
call bug5287(1)|
drop procedure bug5287|
drop procedure if exists bug5307|
create procedure bug5307()
2523
begin
2524 2525 2526 2527 2528 2529 2530 2531
end; set @x = 3|
call bug5307()|
select @x|
@x
3
drop procedure bug5307|
drop procedure if exists bug5258|
create procedure bug5258()
2532
begin
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2533
end|
2534 2535
drop procedure if exists bug5258_aux|
create procedure bug5258_aux()
2536
begin
2537 2538 2539 2540
declare c, m char(19);
select created,modified into c,m from mysql.proc where name = 'bug5258';
if c = m then
select 'Ok';
2541
else
2542
select c, m;
2543
end if;
2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592
end|
call bug5258_aux()|
Ok
Ok
drop procedure bug5258|
drop procedure bug5258_aux|
drop function if exists bug4487|
create function bug4487() returns char
begin
declare v char;
return v;
end|
select bug4487()|
bug4487()
NULL
drop function bug4487|
drop procedure if exists bug4941|
drop procedure if exists bug4941|
create procedure bug4941(out x int)
begin
declare c cursor for select i from t2 limit 1;
open c;
fetch c into x;
close c;
end|
insert into t2 values (null, null, null)|
set @x = 42|
call bug4941(@x)|
select @x|
@x
NULL
delete from t1|
drop procedure bug4941|
drop procedure if exists bug4905|
create table t3 (s1 int,primary key (s1))|
drop procedure if exists bug4905|
create procedure bug4905()
begin
declare v int;
declare continue handler for sqlstate '23000' set v = 5;
insert into t3 values (1);
end|
call bug4905()|
select row_count()|
row_count()
1
call bug4905()|
select row_count()|
row_count()
2593
-1
2594 2595 2596
call bug4905()|
select row_count()|
row_count()
2597
-1
2598 2599 2600 2601 2602 2603 2604 2605
select * from t3|
s1
1
drop procedure bug4905|
drop table t3|
drop procedure if exists bug6029|
drop procedure if exists bug6029|
create procedure bug6029()
2606
begin
2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670
declare exit handler for 1136  select '1136';
declare exit handler for sqlstate '23000'  select 'sqlstate 23000';
declare continue handler for sqlexception  select 'sqlexception';
insert into t3 values (1);
insert into t3 values (1,2);
end|
create table t3 (s1 int, primary key (s1))|
insert into t3 values (1)|
call bug6029()|
sqlstate 23000
sqlstate 23000
delete from t3|
call bug6029()|
1136
1136
drop procedure bug6029|
drop table t3|
drop procedure if exists bug8540|
create procedure bug8540()
begin
declare x int default 1;
select x as y, x+0 as z;
end|
call bug8540()|
y	z
1	1
drop procedure bug8540|
create table t3 (s1 int)|
drop procedure if exists bug6642|
create procedure bug6642()
select abs(count(s1)) from t3|
call bug6642()|
abs(count(s1))
0
call bug6642()|
abs(count(s1))
0
drop procedure bug6642|
insert into t3 values (0),(1)|
drop procedure if exists bug7013|
create procedure bug7013()
select s1,count(s1) from t3 group by s1 with rollup|
call bug7013()|
s1	count(s1)
0	1
1	1
NULL	2
call bug7013()|
s1	count(s1)
0	1
1	1
NULL	2
drop procedure bug7013|
drop table if exists t4|
create table t4 (
a mediumint(8) unsigned not null auto_increment,
b smallint(5) unsigned not null,
c char(32) not null,
primary key  (a)
) engine=myisam default charset=latin1|
insert into t4 values (1, 2, 'oneword')|
insert into t4 values (2, 2, 'anotherword')|
drop procedure if exists bug7743|
create procedure bug7743 ( searchstring char(28) )
2671
begin
2672 2673 2674
declare var mediumint(8) unsigned;
select a into var from t4 where b = 2 and c = binary searchstring limit 1;
select var;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2675
end|
2676 2677
call bug7743("oneword")|
var
2678
1
2679 2680 2681 2682
call bug7743("OneWord")|
var
NULL
Warnings:
2683
Warning	1329	No data - zero rows fetched, selected, or processed
2684 2685
call bug7743("anotherword")|
var
2686
2
2687 2688 2689
call bug7743("AnotherWord")|
var
NULL
2690
Warnings:
2691
Warning	1329	No data - zero rows fetched, selected, or processed
2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702
drop procedure bug7743|
drop table t4|
delete from t3|
insert into t3 values(1)|
drop procedure if exists bug7992_1|
Warnings:
Note	1305	PROCEDURE bug7992_1 does not exist
drop procedure if exists bug7992_2|
Warnings:
Note	1305	PROCEDURE bug7992_2 does not exist
create procedure bug7992_1()
2703
begin
2704 2705
declare i int;
select max(s1)+1 into i from t3;
2706
end|
2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727
create procedure bug7992_2()
insert into t3 (s1) select max(t4.s1)+1 from t3 as t4|
call bug7992_1()|
call bug7992_1()|
call bug7992_2()|
call bug7992_2()|
drop procedure bug7992_1|
drop procedure bug7992_2|
drop table t3|
create table t3 (  userid bigint(20) not null default 0 )|
drop procedure if exists bug8116|
create procedure bug8116(in _userid int)
select * from t3 where userid = _userid|
call bug8116(42)|
userid
call bug8116(42)|
userid
drop procedure bug8116|
drop table t3|
drop procedure if exists bug6857|
create procedure bug6857(counter int)
2728
begin
2729 2730 2731 2732 2733 2734 2735 2736 2737
declare t0, t1 int;
declare plus bool default 0;
set t0 = current_time();
while counter > 0 do
set counter = counter - 1;
end while;
set t1 = current_time();
if t1 > t0 then
set plus = 1;
2738
end if;
2739
select plus;
2740
end|
2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775
drop procedure bug6857|
drop procedure if exists bug8757|
create procedure bug8757()
begin
declare x int;
declare c1 cursor for select data from t1 limit 1;
begin
declare y int;
declare c2 cursor for select i from t2 limit 1;
open c2;
fetch c2 into y;
close c2;
select 2,y;
end;
open c1;
fetch c1 into x;
close c1;
select 1,x;
end|
delete from t1|
delete from t2|
insert into t1 values ("x", 1)|
insert into t2 values ("y", 2, 0.0)|
call bug8757()|
2	y
2	2
1	x
1	1
delete from t1|
delete from t2|
drop procedure bug8757|
drop procedure if exists bug8762|
drop procedure if exists bug8762; create procedure bug8762() begin end|
drop procedure if exists bug8762; create procedure bug8762() begin end|
drop procedure bug8762|
2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789
drop function if exists bug5240|
create function bug5240 () returns int
begin
declare x int;
declare c cursor for select data from t1 limit 1;
open c;
fetch c into x;
close c;
return x;
end|
delete from t1|
insert into t1 values ("answer", 42)|
select id, bug5240() from t1|
id	bug5240()
2790
answer	42
2791
drop function bug5240|
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2792 2793 2794 2795
drop procedure if exists p1|
create table t3(id int)|
insert into t3 values(1)|
create procedure bug7992()
2796 2797
begin
declare i int;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2798 2799 2800 2801 2802 2803
select max(id)+1 into i from t3;
end|
call bug7992()|
call bug7992()|
drop procedure bug7992|
drop table t3|
2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821
create table t3 (
lpitnumber int(11) default null,
lrecordtype int(11) default null
)|
create table t4 (
lbsiid int(11) not null default '0',
ltradingmodeid int(11) not null default '0',
ltradingareaid int(11) not null default '0',
csellingprice decimal(19,4) default null,
primary key  (lbsiid,ltradingmodeid,ltradingareaid)
)|
create table t5 (
lbsiid int(11) not null default '0',
ltradingareaid int(11) not null default '0',
primary key  (lbsiid,ltradingareaid)
)|
drop procedure if exists bug8849|
create procedure bug8849()
2822
begin
2823
insert into t5
2824
(
2825 2826
t5.lbsiid,
t5.ltradingareaid
2827
)
2828
select distinct t3.lpitnumber, t4.ltradingareaid
2829
from
2830 2831 2832 2833 2834
t4 join t3 on
t3.lpitnumber = t4.lbsiid
and t3.lrecordtype = 1
left join t4 as price01 on
price01.lbsiid = t4.lbsiid and
2835
price01.ltradingmodeid = 1 and
2836 2837 2838 2839 2840 2841 2842
t4.ltradingareaid = price01.ltradingareaid;
end|
call bug8849()|
call bug8849()|
call bug8849()|
drop procedure bug8849|
drop tables t3,t4,t5|
2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858
drop procedure if exists bug8937|
create procedure bug8937()
begin
declare s,x,y,z int;
declare a float;
select sum(data),avg(data),min(data),max(data) into s,x,y,z from t1;
select s,x,y,z;
select avg(data) into a from t1;
select a;
end|
delete from t1|
insert into t1 (data) values (1), (2), (3), (4), (6)|
call bug8937()|
s	x	y	z
16	3	1	6
a
2859
3.2
2860 2861
drop procedure bug8937|
delete from t1|
2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925
drop procedure if exists bug6900|
drop procedure if exists bug9074|
drop procedure if exists bug6900_9074|
create table t3 (w char unique, x char)|
insert into t3 values ('a', 'b')|
create procedure bug6900()
begin
declare exit handler for sqlexception select '1';
begin
declare exit handler for sqlexception select '2';
insert into t3 values ('x', 'y', 'z');
end;
end|
create procedure bug9074()
begin
declare x1, x2, x3, x4, x5, x6 int default 0;
begin    
declare continue handler for sqlstate '23000' set x5 = 1;      
insert into t3 values ('a', 'b');      
set x6 = 1;      
end;
begin1_label:
begin
declare continue handler for sqlstate '23000' set x1 = 1;      
insert into t3 values ('a', 'b');      
set x2 = 1;      
begin2_label:
begin  
declare exit handler for sqlstate '23000' set x3 = 1;         
set x4= 1;         
insert into t3 values ('a','b');
set x4= 0;
end begin2_label;
end begin1_label;
select x1, x2, x3, x4, x5, x6;
end|
create procedure bug6900_9074(z int)
begin
declare exit handler for sqlstate '23000' select '23000';
begin
declare exit handler for sqlexception select 'sqlexception';
if z = 1 then
insert into t3 values ('a', 'b');
else
insert into t3 values ('x', 'y', 'z');
end if;
end;
end|
call bug6900()|
2
2
call bug9074()|
x1	x2	x3	x4	x5	x6
1	1	1	1	1	1
call bug6900_9074(0)|
sqlexception
sqlexception
call bug6900_9074(1)|
23000
23000
drop procedure bug6900|
drop procedure bug9074|
drop procedure bug6900_9074|
drop table t3|
2926 2927 2928 2929 2930 2931
drop procedure if exists avg|
create procedure avg ()
begin
end|
call avg ()|
drop procedure avg|
2932
drop procedure if exists bug6129|
2933
set @old_mode= @@sql_mode;
2934
set @@sql_mode= "ERROR_FOR_DIVISION_BY_ZERO";
2935 2936 2937 2938
create procedure bug6129()
select @@sql_mode|
call bug6129()|
@@sql_mode
2939
ERROR_FOR_DIVISION_BY_ZERO
2940 2941 2942
set @@sql_mode= "NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO"|
call bug6129()|
@@sql_mode
2943
ERROR_FOR_DIVISION_BY_ZERO
2944 2945 2946
set @@sql_mode= "NO_ZERO_IN_DATE"|
call bug6129()|
@@sql_mode
2947
ERROR_FOR_DIVISION_BY_ZERO
2948
set @@sql_mode=@old_mode;
2949
drop procedure bug6129|
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967
drop procedure if exists bug9856|
create procedure bug9856()
begin
declare v int;
declare c cursor for select data from t1;
declare exit handler for sqlexception, not found select '16';
open c;
fetch c into v;
select v;
end|
delete from t1|
call bug9856()|
16
16
call bug9856()|
16
16
drop procedure bug9856|
2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989
drop procedure if exists bug9674_1|
drop procedure if exists bug9674_2|
create procedure bug9674_1(out arg int)
begin
declare temp_in1 int default 0;
declare temp_fl1 int default 0;
set temp_in1 = 100;
set temp_fl1 = temp_in1/10;
set arg = temp_fl1;
end|
create procedure bug9674_2()
begin
declare v int default 100;
select v/10;
end|
call bug9674_1(@sptmp)|
call bug9674_1(@sptmp)|
select @sptmp|
@sptmp
10
call bug9674_2()|
v/10
2990
10.0000
2991 2992
call bug9674_2()|
v/10
2993
10.0000
2994 2995
drop procedure bug9674_1|
drop procedure bug9674_2|
2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023
drop procedure if exists bug9598_1|
drop procedure if exists bug9598_2|
create procedure bug9598_1(in var_1 char(16),
out var_2 integer, out var_3 integer)
begin
set var_2 = 50;
set var_3 = 60;
end|
create procedure bug9598_2(in v1 char(16),
in v2 integer,
in v3 integer,
in v4 integer,
in v5 integer)
begin
select v1,v2,v3,v4,v5;
call bug9598_1(v1,@tmp1,@tmp2);
select v1,v2,v3,v4,v5;
end|
call bug9598_2('Test',2,3,4,5)|
v1	v2	v3	v4	v5
Test	2	3	4	5
v1	v2	v3	v4	v5
Test	2	3	4	5
select @tmp1, @tmp2|
@tmp1	@tmp2
50	60
drop procedure bug9598_1|
drop procedure bug9598_2|
3024 3025 3026 3027 3028 3029 3030
drop procedure if exists bug9902|
create function bug9902() returns int(11)
begin
set @x = @x + 1;
return @x;
end|
set @qcs1 = @@query_cache_size|
3031
set global query_cache_size = 102400|
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045
set @x = 1|
insert into t1 values ("qc", 42)|
select bug9902() from t1|
bug9902()
2
select bug9902() from t1|
bug9902()
3
select @x|
@x
3
set global query_cache_size = @qcs1|
delete from t1|
drop function bug9902|
3046 3047
drop function if exists bug9102|
create function bug9102() returns blob return 'a'|
3048
select bug9102()|
3049 3050
bug9102()
a
3051 3052
drop function bug9102|
drop function if exists bug7648|
3053 3054 3055 3056 3057
create function bug7648() returns bit(8) return 'a'|
select bug7648()|
bug7648()
a
drop function bug7648|
3058 3059 3060 3061 3062
drop function if exists bug9775|
create function bug9775(v1 char(1)) returns enum('a','b') return v1|
select bug9775('a'),bug9775('b'),bug9775('c')|
bug9775('a')	bug9775('b')	bug9775('c')
a	b	
3063 3064
Warnings:
Warning	1265	Data truncated for column 'bug9775('c')' at row 1
3065 3066 3067 3068 3069
drop function bug9775|
create function bug9775(v1 int) returns enum('a','b') return v1|
select bug9775(1),bug9775(2),bug9775(3)|
bug9775(1)	bug9775(2)	bug9775(3)
a	b	
3070 3071
Warnings:
Warning	1265	Data truncated for column 'bug9775(3)' at row 1
3072 3073 3074 3075
drop function bug9775|
create function bug9775(v1 char(1)) returns set('a','b') return v1|
select bug9775('a'),bug9775('b'),bug9775('a,b'),bug9775('c')|
bug9775('a')	bug9775('b')	bug9775('a,b')	bug9775('c')
3076 3077 3078 3079
a	b	a	
Warnings:
Warning	1265	Data truncated for column 'v1' at row 1
Warning	1265	Data truncated for column 'bug9775('c')' at row 1
3080 3081 3082 3083 3084
drop function bug9775|
create function bug9775(v1 int) returns set('a','b') return v1|
select bug9775(1),bug9775(2),bug9775(3),bug9775(4)|
bug9775(1)	bug9775(2)	bug9775(3)	bug9775(4)
a	b	a,b	
3085 3086
Warnings:
Warning	1265	Data truncated for column 'bug9775(4)' at row 1
3087
drop function bug9775|
3088 3089 3090 3091 3092 3093 3094 3095 3096 3097
drop function if exists bug8861|
create function bug8861(v1 int) returns year return v1|
select bug8861(05)|
bug8861(05)
2005
set @x = bug8861(05)|
select @x|
@x
2005
drop function bug8861|
3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108
drop procedure if exists bug9004_1|
drop procedure if exists bug9004_2|
create procedure bug9004_1(x char(16))
begin
insert into t1 values (x, 42);
insert into t1 values (x, 17);
end|
create procedure bug9004_2(x char(16))
call bug9004_1(x)|
call bug9004_1('12345678901234567')|
Warnings:
3109
Warning	1265	Data truncated for column 'x' at row 1
3110 3111
call bug9004_2('12345678901234567890')|
Warnings:
3112
Warning	1265	Data truncated for column 'x' at row 1
3113 3114 3115
delete from t1|
drop procedure bug9004_1|
drop procedure bug9004_2|
3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131
drop procedure if exists bug7293|
insert into t1 values ('secret', 0)|
create procedure bug7293(p1 varchar(100))
begin
if exists (select id from t1 where soundex(p1)=soundex(id)) then
select 'yes';
end if;
end;|
call bug7293('secret')|
yes
yes
call bug7293 ('secrete')|
yes
yes
drop procedure bug7293|
delete from t1|
3132 3133 3134 3135 3136 3137 3138 3139
drop procedure if exists bug9841|
drop view if exists v1|
create view v1 as select * from t1, t2 where id = s|
create procedure bug9841 ()
update v1 set data = 10|
call bug9841()|
drop view v1|
drop procedure bug9841|
3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164
drop procedure if exists bug5963|
create procedure bug5963_1 () begin declare v int; set v = (select s1 from t3); select v; end;|
create table t3 (s1 int)|
insert into t3 values (5)|
call bug5963_1()|
v
5
call bug5963_1()|
v
5
drop procedure bug5963_1|
drop table t3|
create procedure bug5963_2 (cfk_value int) 
begin 
if cfk_value in (select cpk from t3) then 
set @x = 5; 
end if; 
end; 
|
create table t3 (cpk int)|
insert into t3 values (1)|
call bug5963_2(1)|
call bug5963_2(1)|
drop procedure bug5963_2|
drop table t3|
3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175
drop function if exists bug9559|
create function bug9559()
returns int
begin
set @y = -6/2;
return @y;
end|
select bug9559()|
bug9559()
-3
drop function bug9559|
3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204
drop procedure if exists bug10961|
create procedure bug10961()
begin
declare v char;
declare x int;
declare c cursor for select * from dual;
declare continue handler for sqlexception select x;
set x = 1;
open c;
set x = 2;
fetch c into v;
set x = 3;
close c;
end|
call bug10961()|
x
1
x
2
x
3
call bug10961()|
x
1
x
2
x
3
drop procedure bug10961|
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244
DROP PROCEDURE IF EXISTS bug6866|
DROP VIEW IF EXISTS tv|
Warnings:
Note	1051	Unknown table 'test.tv'
DROP TABLE IF EXISTS tt1,tt2,tt3|
Warnings:
Note	1051	Unknown table 'tt1'
Note	1051	Unknown table 'tt2'
Note	1051	Unknown table 'tt3'
CREATE TABLE tt1 (a1 int, a2 int, a3 int, data varchar(10))|
CREATE TABLE tt2 (a2 int, data2 varchar(10))|
CREATE TABLE tt3 (a3 int, data3 varchar(10))|
INSERT INTO tt1 VALUES (1, 1, 4, 'xx')|
INSERT INTO tt2 VALUES (1, 'a')|
INSERT INTO tt2 VALUES (2, 'b')|
INSERT INTO tt2 VALUES (3, 'c')|
INSERT INTO tt3 VALUES (4, 'd')|
INSERT INTO tt3 VALUES (5, 'e')|
INSERT INTO tt3 VALUES (6, 'f')|
CREATE VIEW tv AS
SELECT tt1.*, tt2.data2, tt3.data3
FROM tt1 INNER JOIN tt2 ON tt1.a2 = tt2.a2
LEFT JOIN tt3 ON tt1.a3 = tt3.a3
ORDER BY tt1.a1, tt2.a2, tt3.a3|
CREATE PROCEDURE bug6866 (_a1 int)
BEGIN
SELECT * FROM tv WHERE a1 = _a1;
END|
CALL bug6866(1)|
a1	a2	a3	data	data2	data3
1	1	4	xx	a	d
CALL bug6866(1)|
a1	a2	a3	data	data2	data3
1	1	4	xx	a	d
CALL bug6866(1)|
a1	a2	a3	data	data2	data3
1	1	4	xx	a	d
DROP PROCEDURE bug6866;
DROP VIEW tv|
DROP TABLE tt1, tt2, tt3|
3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296
DROP PROCEDURE IF EXISTS bug10136|
create table t3 ( name char(5) not null primary key, val float not null)|
insert into t3 values ('aaaaa', 1), ('bbbbb', 2), ('ccccc', 3)|
create procedure bug10136()
begin
declare done int default 3;
repeat
select * from t3;
set done = done - 1;
until done <= 0 end repeat;
end|
call bug10136()|
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
call bug10136()|
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
call bug10136()|
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
drop procedure bug10136|
drop table t3|
3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321
drop procedure if exists bug11529|
create procedure bug11529()
begin
declare c cursor for select id, data from t1 where data in (10,13);
open c;
begin
declare vid char(16);
declare vdata int;
declare exit handler for not found begin end;
while true do
fetch c into vid, vdata;
end while;
end;
close c;
end|
insert into t1 values
('Name1', 10),
('Name2', 11),
('Name3', 12),
('Name4', 13),
('Name5', 14)|
call bug11529()|
call bug11529()|
delete from t1|
drop procedure bug11529|
3322
set character set utf8|
3323 3324 3325
drop procedure if exists bug6063|
drop procedure if exists bug7088_1|
drop procedure if exists bug7088_2|
3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358
create procedure bug6063()
begin
lâbel: begin end;
label: begin end;
label1: begin end;
end|
create procedure bug7088_1()
label1: begin end label1|
create procedure bug7088_2()
läbel1: begin end|
call bug6063()|
call bug7088_1()|
call bug7088_2()|
set character set default|
show create procedure bug6063|
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
bug6063		CREATE DEFINER=`root`@`localhost` PROCEDURE `bug6063`()
begin
lbel: begin end;
label: begin end;
label1: begin end;
end	utf8	latin1_swedish_ci	latin1_swedish_ci
show create procedure bug7088_1|
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
bug7088_1		CREATE DEFINER=`root`@`localhost` PROCEDURE `bug7088_1`()
label1: begin end label1	utf8	latin1_swedish_ci	latin1_swedish_ci
show create procedure bug7088_2|
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
bug7088_2		CREATE DEFINER=`root`@`localhost` PROCEDURE `bug7088_2`()
lbel1: begin end	utf8	latin1_swedish_ci	latin1_swedish_ci
drop procedure bug6063|
drop procedure bug7088_1|
drop procedure bug7088_2|
3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375
drop procedure if exists bug9565_sub|
drop procedure if exists bug9565|
create procedure bug9565_sub()
begin
select * from t1;
end|
create procedure bug9565()
begin
insert into t1 values ("one", 1);
call bug9565_sub();
end|
call bug9565()|
id	data
one	1
delete from t1|
drop procedure bug9565_sub|
drop procedure bug9565|
3376 3377 3378 3379
drop procedure if exists bug9538|
create procedure bug9538()
set @@sort_buffer_size = 1000000|
set @x = @@sort_buffer_size|
3380
set @@sort_buffer_size = 2000000|
3381 3382
select @@sort_buffer_size|
@@sort_buffer_size
3383
2000000
3384 3385 3386 3387 3388 3389
call bug9538()|
select @@sort_buffer_size|
@@sort_buffer_size
1000000
set @@sort_buffer_size = @x|
drop procedure bug9538|
georg@lmy002.wdf.sap.corp's avatar
georg@lmy002.wdf.sap.corp committed
3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413
drop procedure if exists bug8692|
create table t3 (c1 varchar(5), c2 char(5), c3 enum('one','two'), c4 text, c5 blob, c6 char(5), c7 varchar(5))|
insert into t3 values ('', '', '', '', '', '', NULL)|
Warnings:
Warning	1265	Data truncated for column 'c3' at row 1
create procedure bug8692()
begin 
declare v1 VARCHAR(10); 
declare v2 VARCHAR(10); 
declare v3 VARCHAR(10); 
declare v4 VARCHAR(10); 
declare v5 VARCHAR(10); 
declare v6 VARCHAR(10); 
declare v7 VARCHAR(10); 
declare c8692 cursor for select c1,c2,c3,c4,c5,c6,c7 from t3; 
open c8692; 
fetch c8692 into v1,v2,v3,v4,v5,v6,v7;
select v1, v2, v3, v4, v5, v6, v7;
end|
call bug8692()|
v1	v2	v3	v4	v5	v6	v7
						NULL
drop procedure bug8692|
drop table t3|
3414 3415 3416 3417 3418 3419 3420 3421 3422
drop function if exists bug10055|
create function bug10055(v char(255)) returns char(255) return lower(v)|
select t.column_name, bug10055(t.column_name)
from information_schema.columns as t
where t.table_schema = 'test' and t.table_name = 't1'|
column_name	bug10055(t.column_name)
id	id
data	data
drop function bug10055|
3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435
drop procedure if exists bug12297|
create procedure bug12297(lim int)
begin
set @x = 0;
repeat
insert into t1(id,data)
values('aa', @x);
set @x = @x + 1;
until @x >= lim
end repeat;
end|
call bug12297(10)|
drop procedure bug12297|
3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450
drop function if exists f_bug11247|
drop procedure if exists p_bug11247|
create function f_bug11247(param int)
returns int
return param + 1|
create procedure p_bug11247(lim int)
begin
declare v int default 0;
while v < lim do
set v= f_bug11247(v);
end while;
end|
call p_bug11247(10)|
drop function f_bug11247|
drop procedure p_bug11247|
3451
drop procedure if exists bug12168|
3452 3453 3454 3455
drop table if exists t3, t4|
create table t3 (a int)|
insert into t3 values (1),(2),(3),(4)|
create table t4 (a int)|
3456 3457 3458 3459 3460
create procedure bug12168(arg1 char(1))
begin
declare b, c integer;
if arg1 = 'a' then
begin
3461
declare c1 cursor for select a from t3 where a % 2;
3462 3463 3464 3465 3466 3467 3468 3469
declare continue handler for not found set b = 1;
set b = 0;
open c1;
c1_repeat: repeat
fetch c1 into c;
if (b = 1) then
leave c1_repeat;
end if;
3470
insert into t4 values (c);
3471 3472 3473 3474 3475 3476
until b = 1
end repeat;
end;
end if;
if arg1 = 'b' then
begin
3477
declare c2 cursor for select a from t3 where not a % 2;
3478 3479 3480 3481 3482 3483 3484 3485
declare continue handler for not found set b = 1;
set b = 0;
open c2;
c2_repeat: repeat
fetch c2 into c;
if (b = 1) then
leave c2_repeat;
end if;
3486
insert into t4 values (c);
3487 3488 3489 3490 3491 3492
until b = 1
end repeat;
end;
end if;
end|
call bug12168('a')|
3493
select * from t4|
3494 3495 3496
a
1
3
3497
truncate t4|
3498
call bug12168('b')|
3499
select * from t4|
3500 3501 3502
a
2
4
3503
truncate t4|
3504
call bug12168('a')|
3505
select * from t4|
3506 3507 3508
a
1
3
3509
truncate t4|
3510
call bug12168('b')|
3511
select * from t4|
3512 3513 3514
a
2
4
3515 3516
truncate t4|
drop table t3, t4|
3517
drop procedure if exists bug12168|
3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536
drop table if exists t3|
drop procedure if exists bug11333|
create table t3 (c1 char(128))|
insert into t3 values 
('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')|
create procedure bug11333(i int)
begin
declare tmp varchar(128);
set @x = 0;
repeat
select c1 into tmp from t3
where c1 = 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA';
set @x = @x + 1;
until @x >= i
end repeat;
end|
call bug11333(10)|
drop procedure bug11333|
drop table t3|
acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
3537
drop function if exists bug9048|
andrey@example.com's avatar
andrey@example.com committed
3538 3539 3540 3541 3542 3543
create function bug9048(f1 char binary) returns char
begin
set f1= concat( 'hello', f1 );
return f1;
end|
drop function bug9048|
acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
3544 3545 3546 3547 3548
create function bug9048(f1 char binary) returns char binary
begin
set f1= concat( 'hello', f1 );
return f1;
end|
andrey@example.com's avatar
andrey@example.com committed
3549
ERROR 42000: This version of MySQL doesn't yet support 'return value collation'
3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568
drop procedure if exists bug12849_1|
create procedure bug12849_1(inout x char) select x into x|
set @var='a'|
call bug12849_1(@var)|
select @var|
@var
a
drop procedure bug12849_1|
drop procedure if exists bug12849_2|
create procedure bug12849_2(inout foo varchar(15))
begin
select concat(foo, foo) INTO foo;
end|
set @var='abcd'|
call bug12849_2(@var)|
select @var|
@var
abcdabcd
drop procedure bug12849_2|
3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607
drop procedure if exists bug131333|
drop function if exists bug131333|
create procedure bug131333()
begin
begin
declare a int;
select a;
set a = 1;
select a;
end;
begin
declare b int;
select b;
end;
end|
create function bug131333()
returns int
begin
begin
declare a int;
set a = 1;
end;
begin
declare b int;
return b;
end;
end|
call bug131333()|
a
NULL
a
1
b
NULL
select bug131333()|
bug131333()
NULL
drop procedure bug131333|
drop function bug131333|
3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635
drop function if exists bug12379|
drop procedure if exists bug12379_1|
drop procedure if exists bug12379_2|
drop procedure if exists bug12379_3|
drop table if exists t3|
create table t3 (c1 char(1) primary key not null)|
create function bug12379()
returns integer
begin
insert into t3 values('X');
insert into t3 values('X');
return 0;
end|
create procedure bug12379_1()
begin
declare exit handler for sqlexception select 42;
select bug12379();
END|
create procedure bug12379_2()
begin
declare exit handler for sqlexception begin end;
select bug12379();
end|
create procedure bug12379_3()
begin
select bug12379();
end|
select bug12379()|
3636
ERROR 23000: Duplicate entry 'X' for key 'PRIMARY'
3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652
select 1|
1
1
call bug12379_1()|
bug12379()
42
42
select 2|
2
2
call bug12379_2()|
bug12379()
select 3|
3
3
call bug12379_3()|
3653
ERROR 23000: Duplicate entry 'X' for key 'PRIMARY'
3654 3655 3656 3657 3658 3659 3660
select 4|
4
4
drop function bug12379|
drop procedure bug12379_1|
drop procedure bug12379_2|
drop procedure bug12379_3|
3661
drop table t3|
3662 3663 3664 3665 3666 3667 3668 3669
drop procedure if exists bug13124|
create procedure bug13124()
begin
declare y integer;
set @x=y;
end|
call bug13124()|
drop procedure  bug13124|
3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685
drop procedure if exists bug12979_1|
create procedure bug12979_1(inout d decimal(5)) set d = d / 2|
set @bug12979_user_var = NULL|
call bug12979_1(@bug12979_user_var)|
drop procedure bug12979_1|
drop procedure if exists bug12979_2|
create procedure bug12979_2()
begin
declare internal_var decimal(5);
set internal_var= internal_var / 2;
select internal_var;
end|
call bug12979_2()|
internal_var
NULL
drop procedure bug12979_2|
3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707
drop table if exists t3|
drop procedure if exists bug6127|
create table t3 (s1 int unique)|
set @sm=@@sql_mode|
set sql_mode='traditional'|
create procedure bug6127()
begin
declare continue handler for sqlstate '23000'
    begin
declare continue handler for sqlstate '22003'
        insert into t3 values (0);
insert into t3 values (1000000000000000);
end;
insert into t3 values (1);
insert into t3 values (1);
end|
call bug6127()|
select * from t3|
s1
0
1
call bug6127()|
3708
ERROR 23000: Duplicate entry '0' for key 's1'
3709 3710 3711 3712 3713 3714 3715
select * from t3|
s1
0
1
set sql_mode=@sm|
drop table t3|
drop procedure bug6127|
3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746
drop procedure if exists bug12589_1|
drop procedure if exists bug12589_2|
drop procedure if exists bug12589_3|
create procedure bug12589_1()
begin
declare spv1 decimal(3,3);
set spv1= 123.456;
set spv1 = 'test';
create temporary table tm1 as select spv1;
show create table tm1;
drop temporary table tm1;
end|
create procedure bug12589_2()
begin
declare spv1 decimal(6,3);
set spv1= 123.456;
create temporary table tm1 as select spv1;
show create table tm1;
drop temporary table tm1;
end|
create procedure bug12589_3()
begin
declare spv1 decimal(6,3);
set spv1= -123.456;
create temporary table tm1 as select spv1;
show create table tm1;
drop temporary table tm1;
end|
call bug12589_1()|
Table	Create Table
tm1	CREATE TEMPORARY TABLE `tm1` (
3747
  `spv1` decimal(3,3) DEFAULT NULL
3748 3749 3750 3751
) ENGINE=MyISAM DEFAULT CHARSET=latin1
call bug12589_2()|
Table	Create Table
tm1	CREATE TEMPORARY TABLE `tm1` (
3752
  `spv1` decimal(6,3) DEFAULT NULL
3753 3754 3755 3756
) ENGINE=MyISAM DEFAULT CHARSET=latin1
call bug12589_3()|
Table	Create Table
tm1	CREATE TEMPORARY TABLE `tm1` (
3757
  `spv1` decimal(6,3) DEFAULT NULL
3758
) ENGINE=MyISAM DEFAULT CHARSET=latin1
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
3759 3760 3761
drop procedure bug12589_1|
drop procedure bug12589_2|
drop procedure bug12589_3|
3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829
drop table if exists t3|
drop procedure if exists bug7049_1|
drop procedure if exists bug7049_2|
drop procedure if exists bug7049_3|
drop procedure if exists bug7049_4|
drop function if exists bug7049_1|
drop function if exists bug7049_2|
create table t3 ( x int unique )|
create procedure bug7049_1()
begin
insert into t3 values (42);
insert into t3 values (42);
end|
create procedure bug7049_2()
begin
declare exit handler for sqlexception
select 'Caught it' as 'Result';
call bug7049_1();
select 'Missed it' as 'Result';
end|
create procedure bug7049_3()
call bug7049_1()|
create procedure bug7049_4()
begin
declare exit handler for sqlexception
select 'Caught it' as 'Result';
call bug7049_3();
select 'Missed it' as 'Result';
end|
create function bug7049_1()
returns int
begin
insert into t3 values (42);
insert into t3 values (42);
return 42;
end|
create function bug7049_2()
returns int
begin
declare x int default 0;
declare continue handler for sqlexception
set x = 1;
set x = bug7049_1();
return x;
end|
call bug7049_2()|
Result
Caught it
select * from t3|
x
42
delete from t3|
call bug7049_4()|
Result
Caught it
select * from t3|
x
42
select bug7049_2()|
bug7049_2()
1
drop table t3|
drop procedure bug7049_1|
drop procedure bug7049_2|
drop procedure bug7049_3|
drop procedure bug7049_4|
drop function bug7049_1|
drop function bug7049_2|
3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857
drop function if exists bug13941|
drop procedure if exists bug13941|
create function bug13941(p_input_str text)
returns text
begin
declare p_output_str text;
set p_output_str = p_input_str;
set p_output_str = replace(p_output_str, 'xyzzy', 'plugh');
set p_output_str = replace(p_output_str, 'test', 'prova');
set p_output_str = replace(p_output_str, 'this', 'questo');
set p_output_str = replace(p_output_str, ' a ', 'una ');
set p_output_str = replace(p_output_str, 'is', '');
return p_output_str;
end|
create procedure bug13941(out sout varchar(128))
begin
set sout = 'Local';
set sout = ifnull(sout, 'DEF');
end|
select bug13941('this is a test')|
bug13941('this is a test')
questo una prova
call bug13941(@a)|
select @a|
@a
Local
drop function bug13941|
drop procedure bug13941|
3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900
DROP PROCEDURE IF EXISTS bug13095;
DROP TABLE IF EXISTS bug13095_t1;
DROP VIEW IF EXISTS bug13095_v1;
CREATE PROCEDURE bug13095(tbl_name varchar(32))
BEGIN
SET @str =
CONCAT("CREATE TABLE ", tbl_name, "(stuff char(15))");
SELECT @str;
PREPARE stmt FROM @str;
EXECUTE stmt;
SET @str =
CONCAT("INSERT INTO ", tbl_name, " VALUES('row1'),('row2'),('row3')" );
SELECT @str;
PREPARE stmt FROM @str;
EXECUTE stmt;
SET @str =
CONCAT("CREATE VIEW bug13095_v1(c1) AS SELECT stuff FROM ", tbl_name);
SELECT @str;
PREPARE stmt FROM @str;
EXECUTE stmt;
SELECT * FROM bug13095_v1;
SET @str =
"DROP VIEW bug13095_v1";
SELECT @str;
PREPARE stmt FROM @str;
EXECUTE stmt;
END|
CALL bug13095('bug13095_t1');
@str
CREATE TABLE bug13095_t1(stuff char(15))
@str
INSERT INTO bug13095_t1 VALUES('row1'),('row2'),('row3')
@str
CREATE VIEW bug13095_v1(c1) AS SELECT stuff FROM bug13095_t1
c1
row1
row2
row3
@str
DROP VIEW bug13095_v1
DROP PROCEDURE IF EXISTS bug13095;
DROP VIEW IF EXISTS bug13095_v1;
DROP TABLE IF EXISTS bug13095_t1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
3901 3902 3903 3904 3905 3906 3907 3908
drop function if exists bug14723|
drop procedure if exists bug14723|
/*!50003 create function bug14723()
returns bigint(20)
main_loop: begin
return 42;
end */;;
show create function bug14723;;
3909
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
3910
bug14723		CREATE DEFINER=`root`@`localhost` FUNCTION `bug14723`() RETURNS bigint(20)
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
3911 3912
main_loop: begin
return 42;
3913
end	latin1	latin1_swedish_ci	latin1_swedish_ci
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
3914 3915 3916 3917 3918 3919 3920 3921
select bug14723();;
bug14723()
42
/*!50003 create procedure bug14723()
main_loop: begin
select 42;
end */;;
show create procedure bug14723;;
3922
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
3923
bug14723		CREATE DEFINER=`root`@`localhost` PROCEDURE `bug14723`()
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
3924 3925
main_loop: begin
select 42;
3926
end	latin1	latin1_swedish_ci	latin1_swedish_ci
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964
call bug14723();;
42
42
drop function bug14723|
drop procedure bug14723|
create procedure bug14845()
begin
declare a char(255);
declare done int default 0;
declare c cursor for select count(*) from t1 where 1 = 0;
declare continue handler for sqlstate '02000' set done = 1;
open c;
repeat
fetch c into a;
if not done then
select a;
end if;
until done end repeat;
close c;
end|
call bug14845()|
a
0
drop procedure bug14845|
drop procedure if exists bug13549_1|
drop procedure if exists bug13549_2|
CREATE PROCEDURE `bug13549_2`()
begin
call bug13549_1();
end|
CREATE PROCEDURE `bug13549_1`()
begin
declare done int default 0;
set done= not done;
end|
CALL bug13549_2()|
drop procedure bug13549_2|
drop procedure bug13549_1|
3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994
drop function if exists bug10100f|
drop procedure if exists bug10100p|
drop procedure if exists bug10100t|
drop procedure if exists bug10100pt|
drop procedure if exists bug10100pv|
drop procedure if exists bug10100pd|
drop procedure if exists bug10100pc|
create function bug10100f(prm int) returns int
begin
if prm > 1 then
return prm * bug10100f(prm - 1);
end if;
return 1;
end|
create procedure bug10100p(prm int, inout res int)
begin
set res = res * prm;
if prm > 1 then
call bug10100p(prm - 1, res);  
end if;
end|
create procedure bug10100t(prm int)
begin
declare res int;
set res = 1;
call bug10100p(prm, res);
select res;
end|
create table t3 (a int)|
insert into t3 values (0)|
3995
create view v1 as select a from t3|
3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015
create procedure bug10100pt(level int, lim int)
begin
if level < lim then
update t3 set a=level;
FLUSH TABLES;
call bug10100pt(level+1, lim);
else
select * from t3;
end if;
end|
create procedure bug10100pv(level int, lim int)
begin
if level < lim then
update v1 set a=level;
FLUSH TABLES;
call bug10100pv(level+1, lim);
else
select * from v1;
end if;
end|
4016
prepare stmt2 from "select * from t3;"|
4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140
create procedure bug10100pd(level int, lim int)
begin
if level < lim then
select level;
prepare stmt1 from "update t3 set a=a+2";
execute stmt1;
FLUSH TABLES;
execute stmt1;
FLUSH TABLES;
execute stmt1;
FLUSH TABLES;
deallocate prepare stmt1;
execute stmt2;
select * from t3;
call bug10100pd(level+1, lim);
else
execute stmt2;
end if;
end|
create procedure bug10100pc(level int, lim int)
begin
declare lv int;
declare c cursor for select a from t3;
open c;
if level < lim then
select level;
fetch c into lv;
select lv;
update t3 set a=level+lv;
FLUSH TABLES;
call bug10100pc(level+1, lim);
else
select * from t3;
end if;
close c;
end|
set @@max_sp_recursion_depth=4|
select @@max_sp_recursion_depth|
@@max_sp_recursion_depth
4
select bug10100f(3)|
ERROR HY000: Recursive stored functions and triggers are not allowed.
select bug10100f(6)|
ERROR HY000: Recursive stored functions and triggers are not allowed.
call bug10100t(5)|
res
120
call bug10100pt(1,5)|
a
4
call bug10100pv(1,5)|
a
4
update t3 set a=1|
call bug10100pd(1,5)|
level
1
a
7
a
7
level
2
a
13
a
13
level
3
a
19
a
19
level
4
a
25
a
25
a
25
select * from t3|
a
25
update t3 set a=1|
call bug10100pc(1,5)|
level
1
lv
1
level
2
lv
2
level
3
lv
4
level
4
lv
7
a
11
select * from t3|
a
11
set @@max_sp_recursion_depth=0|
select @@max_sp_recursion_depth|
@@max_sp_recursion_depth
0
select bug10100f(5)|
ERROR HY000: Recursive stored functions and triggers are not allowed.
call bug10100t(5)|
ERROR HY000: Recursive limit 0 (as set by the max_sp_recursion_depth variable) was exceeded for routine bug10100p
deallocate prepare stmt2|
drop function bug10100f|
drop procedure bug10100p|
drop procedure bug10100t|
drop procedure bug10100pt|
drop procedure bug10100pv|
drop procedure bug10100pd|
drop procedure bug10100pc|
drop view v1|
4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157
drop procedure if exists bug13729|
drop table if exists t3|
create table t3 (s1 int, primary key (s1))|
insert into t3 values (1),(2)|
create procedure bug13729()
begin
declare continue handler for sqlexception select 55;
update t3 set s1 = 1;
end|
call bug13729()|
55
55
select * from t3|
s1
1
2
drop procedure bug13729|
4158
drop table t3|
4159 4160 4161 4162 4163 4164
drop procedure if exists bug14643_1|
drop procedure if exists bug14643_2|
create procedure bug14643_1()
begin
declare continue handler for sqlexception select 'boo' as 'Handler';
begin
4165
declare v int default undefined_var;
4166 4167 4168
if v = 1 then
select 1;
else
4169
select v, isnull(v);
4170 4171 4172 4173 4174 4175
end if;
end;
end|
create procedure bug14643_2()
begin
declare continue handler for sqlexception select 'boo' as 'Handler';
4176
case undefined_var
4177 4178 4179 4180 4181
when 1 then
select 1;
else
select 2;
end case;
4182
select undefined_var;
4183 4184 4185 4186
end|
call bug14643_1()|
Handler
boo
4187 4188
v	isnull(v)
NULL	1
4189 4190 4191
call bug14643_2()|
Handler
boo
4192 4193
Handler
boo
4194 4195
drop procedure bug14643_1|
drop procedure bug14643_2|
4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219
drop procedure if exists bug14304|
drop table if exists t3, t4|
create table t3(a int primary key auto_increment)|
create table t4(a int primary key auto_increment)|
create procedure bug14304()
begin
insert into t3 set a=null;
insert into t4 set a=null;
insert into t4 set a=null;
insert into t4 set a=null;
insert into t4 set a=null;
insert into t4 set a=null;
insert into t4 select null as a;
insert into t3 set a=null;
insert into t3 set a=null;
select * from t3;
end|
call bug14304()|
a
1
2
3
drop procedure bug14304|
drop table t3, t4|
4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248
drop procedure if exists bug14376|
create procedure bug14376()
begin
declare x int default x;
end|
call bug14376()|
ERROR 42S22: Unknown column 'x' in 'field list'
drop procedure bug14376|
create procedure bug14376()
begin
declare x int default 42;
begin
declare x int default x;
select x;
end;
end|
call bug14376()|
x
42
drop procedure bug14376|
create procedure bug14376(x int)
begin
declare x int default x;
select x;
end|
call bug14376(4711)|
x
4711
drop procedure bug14376|
4249 4250 4251 4252 4253
drop procedure if exists bug5967|
drop table if exists t3|
create table t3 (a varchar(255))|
insert into t3 (a) values ("a - table column")|
create procedure bug5967(a varchar(255))
4254 4255
begin
declare i varchar(255);
4256
declare c cursor for select a from t3;
4257
select a;
4258
select a from t3 into i;
4259 4260 4261 4262 4263 4264
select i as 'Parameter takes precedence over table column';                     open c;
fetch c into i;
close c;
select i as 'Parameter takes precedence over table column in cursors';
begin
declare a varchar(255) default 'a - local variable';
4265
declare c1 cursor for select a from t3;
4266 4267 4268 4269 4270 4271 4272
select a as 'A local variable takes precedence over parameter';
open c1;
fetch c1 into i;
close c1;
select i as 'A local variable takes precedence over parameter in cursors';
begin
declare a varchar(255) default 'a - local variable in a nested compound statement';
4273
declare c2 cursor for select a from t3;
4274
select a as 'A local variable in a nested compound statement takes precedence over a local variable in the outer statement';
4275
select a from t3 into i;
4276 4277 4278 4279 4280 4281 4282 4283
select i as  'A local variable in a nested compound statement takes precedence over table column';
open c2;
fetch c2 into i;
close c2;
select i as  'A local variable in a nested compound statement takes precedence over table column in cursors';
end;
end;
end|
4284
call bug5967("a - stored procedure parameter")|
4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300
a
a - stored procedure parameter
Parameter takes precedence over table column
a - stored procedure parameter
Parameter takes precedence over table column in cursors
a - stored procedure parameter
A local variable takes precedence over parameter
a - local variable
A local variable takes precedence over parameter in cursors
a - local variable
A local variable in a nested compound statement takes precedence over a local variable in the outer statement
a - local variable in a nested compound statement
A local variable in a nested compound statement takes precedence over table column
a - local variable in a nested compound statement
A local variable in a nested compound statement takes precedence over table column in cursors
a - local variable in a nested compound statement
4301
drop procedure bug5967|
4302 4303 4304 4305 4306 4307 4308 4309 4310
drop procedure if exists bug13012|
create procedure bug13012()
BEGIN
REPAIR TABLE t1;
END|
call bug13012()|
Table	Op	Msg_type	Msg_text
test.t1	repair	status	OK
drop procedure bug13012|
4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321
create view v1 as select * from t1|
create procedure bug13012()
BEGIN
REPAIR TABLE t1,t2,t3,v1;
OPTIMIZE TABLE t1,t2,t3,v1;
ANALYZE TABLE t1,t2,t3,v1;
END|
call bug13012()|
Table	Op	Msg_type	Msg_text
test.t1	repair	status	OK
test.t2	repair	status	OK
4322
test.t3	repair	status	OK
4323 4324
test.v1	repair	Error	'test.v1' is not BASE TABLE
test.v1	repair	error	Corrupt
4325 4326 4327
Table	Op	Msg_type	Msg_text
test.t1	optimize	status	OK
test.t2	optimize	status	OK
4328
test.t3	optimize	status	OK
4329 4330
test.v1	optimize	Error	'test.v1' is not BASE TABLE
test.v1	optimize	error	Corrupt
4331 4332 4333
Table	Op	Msg_type	Msg_text
test.t1	analyze	status	Table is already up to date
test.t2	analyze	status	Table is already up to date
4334
test.t3	analyze	status	Table is already up to date
4335 4336
test.v1	analyze	Error	'test.v1' is not BASE TABLE
test.v1	analyze	error	Corrupt
4337 4338 4339 4340
call bug13012()|
Table	Op	Msg_type	Msg_text
test.t1	repair	status	OK
test.t2	repair	status	OK
4341
test.t3	repair	status	OK
4342 4343
test.v1	repair	Error	'test.v1' is not BASE TABLE
test.v1	repair	error	Corrupt
4344 4345 4346
Table	Op	Msg_type	Msg_text
test.t1	optimize	status	OK
test.t2	optimize	status	OK
4347
test.t3	optimize	status	OK
4348 4349
test.v1	optimize	Error	'test.v1' is not BASE TABLE
test.v1	optimize	error	Corrupt
4350 4351 4352
Table	Op	Msg_type	Msg_text
test.t1	analyze	status	Table is already up to date
test.t2	analyze	status	Table is already up to date
4353
test.t3	analyze	status	Table is already up to date
4354 4355
test.v1	analyze	Error	'test.v1' is not BASE TABLE
test.v1	analyze	error	Corrupt
4356 4357 4358 4359
call bug13012()|
Table	Op	Msg_type	Msg_text
test.t1	repair	status	OK
test.t2	repair	status	OK
4360
test.t3	repair	status	OK
4361 4362
test.v1	repair	Error	'test.v1' is not BASE TABLE
test.v1	repair	error	Corrupt
4363 4364 4365
Table	Op	Msg_type	Msg_text
test.t1	optimize	status	OK
test.t2	optimize	status	OK
4366
test.t3	optimize	status	OK
4367 4368
test.v1	optimize	Error	'test.v1' is not BASE TABLE
test.v1	optimize	error	Corrupt
4369 4370 4371
Table	Op	Msg_type	Msg_text
test.t1	analyze	status	Table is already up to date
test.t2	analyze	status	Table is already up to date
4372
test.t3	analyze	status	Table is already up to date
4373 4374
test.v1	analyze	Error	'test.v1' is not BASE TABLE
test.v1	analyze	error	Corrupt
4375
drop procedure bug13012|
4376
drop view v1|
4377
select * from t1 order by data|
4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388
id	data
aa	0
aa	1
aa	2
aa	3
aa	4
aa	5
aa	6
aa	7
aa	8
aa	9
4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427
drop schema if exists mysqltest1|
Warnings:
Note	1008	Can't drop database 'mysqltest1'; database doesn't exist
drop schema if exists mysqltest2|
Warnings:
Note	1008	Can't drop database 'mysqltest2'; database doesn't exist
drop schema if exists mysqltest3|
Warnings:
Note	1008	Can't drop database 'mysqltest3'; database doesn't exist
create schema mysqltest1|
create schema mysqltest2|
create schema mysqltest3|
use mysqltest3|
create procedure mysqltest1.p1 (out prequestid varchar(100))
begin
call mysqltest2.p2('call mysqltest3.p3(1, 2)');
end|
create procedure mysqltest2.p2(in psql text)
begin
declare lsql text;
set @lsql= psql;
prepare lstatement from @lsql;
execute lstatement;
deallocate prepare lstatement;
end|
create procedure mysqltest3.p3(in p1 int)
begin
select p1;
end|
call mysqltest1.p1(@rs)|
ERROR 42000: Incorrect number of arguments for PROCEDURE mysqltest3.p3; expected 1, got 2
call mysqltest1.p1(@rs)|
ERROR 42000: Incorrect number of arguments for PROCEDURE mysqltest3.p3; expected 1, got 2
call mysqltest1.p1(@rs)|
ERROR 42000: Incorrect number of arguments for PROCEDURE mysqltest3.p3; expected 1, got 2
drop schema if exists mysqltest1|
drop schema if exists mysqltest2|
drop schema if exists mysqltest3|
use test|
4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454
drop table if exists t3|
drop procedure if exists bug15441|
create table t3 (id int not null primary key, county varchar(25))|
insert into t3 (id, county) values (1, 'York')|
create procedure bug15441(c varchar(25))
begin
update t3 set id=2, county=values(c);
end|
call bug15441('county')|
ERROR 42S22: Unknown column 'c' in 'field list'
drop procedure bug15441|
create procedure bug15441(county varchar(25))
begin
declare c varchar(25) default "hello";
insert into t3 (id, county) values (1, county)
on duplicate key update county= values(county);
select * from t3;
update t3 set id=2, county=values(id);
select * from t3;
end|
call bug15441('Yale')|
id	county
1	Yale
id	county
2	NULL
drop table t3|
drop procedure bug15441|
4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528
drop procedure if exists bug14498_1|
drop procedure if exists bug14498_2|
drop procedure if exists bug14498_3|
drop procedure if exists bug14498_4|
drop procedure if exists bug14498_5|
create procedure bug14498_1()
begin
declare continue handler for sqlexception select 'error' as 'Handler';
if v then
select 'yes' as 'v';
else
select 'no' as 'v';
end if;
select 'done' as 'End';
end|
create procedure bug14498_2()
begin
declare continue handler for sqlexception select 'error' as 'Handler';
while v do
select 'yes' as 'v';
end while;
select 'done' as 'End';
end|
create procedure bug14498_3()
begin
declare continue handler for sqlexception select 'error' as 'Handler';
repeat
select 'maybe' as 'v';
until v end repeat;
select 'done' as 'End';
end|
create procedure bug14498_4()
begin
declare continue handler for sqlexception select 'error' as 'Handler';
case v
when 1 then
select '1' as 'v';
when 2 then
select '2' as 'v';
else
select '?' as 'v';
end case;
select 'done' as 'End';
end|
create procedure bug14498_5()
begin
declare continue handler for sqlexception select 'error' as 'Handler';
case
when v = 1 then
select '1' as 'v';
when v = 2 then
select '2' as 'v';
else
select '?' as 'v';
end case;
select 'done' as 'End';
end|
call bug14498_1()|
Handler
error
End
done
call bug14498_2()|
Handler
error
End
done
call bug14498_3()|
v
maybe
Handler
error
End
done
4529 4530 4531 4532 4533
call bug14498_4()|
Handler
error
End
done
4534 4535 4536 4537 4538 4539 4540 4541 4542 4543
call bug14498_5()|
Handler
error
End
done
drop procedure bug14498_1|
drop procedure bug14498_2|
drop procedure bug14498_3|
drop procedure bug14498_4|
drop procedure bug14498_5|
4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587
drop table if exists t3|
drop procedure if exists bug15231_1|
drop procedure if exists bug15231_2|
drop procedure if exists bug15231_3|
drop procedure if exists bug15231_4|
create table t3 (id int not null)|
create procedure bug15231_1()
begin
declare xid integer;
declare xdone integer default 0;
declare continue handler for not found set xdone = 1;
set xid=null;
call bug15231_2(xid);
select xid, xdone;
end|
create procedure bug15231_2(inout ioid integer)
begin
select "Before NOT FOUND condition is triggered" as '1';
select id into ioid from t3 where id=ioid;
select "After NOT FOUND condtition is triggered" as '2';
if ioid is null then
set ioid=1;
end if;
end|
create procedure bug15231_3()
begin
declare exit handler for sqlwarning
select 'Caught it (wrong)' as 'Result';
call bug15231_4();
end|
create procedure bug15231_4()
begin
declare x decimal(2,1);
set x = 'zap';
select 'Missed it (correct)' as 'Result';
end|
call bug15231_1()|
1
Before NOT FOUND condition is triggered
2
After NOT FOUND condtition is triggered
xid	xdone
1	0
Warnings:
4588
Warning	1329	No data - zero rows fetched, selected, or processed
4589 4590 4591 4592 4593 4594 4595 4596 4597 4598
call bug15231_3()|
Result
Missed it (correct)
Warnings:
Warning	1366	Incorrect decimal value: 'zap' for column 'x' at row 1
drop table if exists t3|
drop procedure if exists bug15231_1|
drop procedure if exists bug15231_2|
drop procedure if exists bug15231_3|
drop procedure if exists bug15231_4|
4599 4600 4601 4602 4603 4604
drop procedure if exists bug15011|
create table t3 (c1 int primary key)|
insert into t3 values (1)|
create procedure bug15011()
deterministic
begin
4605
declare continue handler for 1062
4606 4607
select 'Outer' as 'Handler';
begin
4608
declare continue handler for 1062
4609 4610 4611 4612 4613 4614 4615 4616 4617
select 'Inner' as 'Handler';
insert into t3 values (1);
end;
end|
call bug15011()|
Handler
Inner
drop procedure bug15011|
drop table t3|
4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636
drop procedure if exists bug17476|
create table t3 ( d date )|
insert into t3 values
( '2005-01-01' ), ( '2005-01-02' ), ( '2005-01-03' ),
( '2005-01-04' ), ( '2005-02-01' ), ( '2005-02-02' )|
create procedure bug17476(pDateFormat varchar(10))
select date_format(t3.d, pDateFormat), count(*)
from t3 
group by date_format(t3.d, pDateFormat)|
call bug17476('%Y-%m')|
date_format(t3.d, pDateFormat)	count(*)
2005-01	4
2005-02	2
call bug17476('%Y-%m')|
date_format(t3.d, pDateFormat)	count(*)
2005-01	4
2005-02	2
drop table t3|
drop procedure bug17476|
4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692
drop table if exists t3|
drop procedure if exists bug16887|
create table t3 ( c varchar(1) )|
insert into t3 values
(' '),('.'),(';'),(','),('-'),('_'),('('),(')'),('/'),('\\')|
create procedure bug16887()
begin
declare i int default 10;
again:
while i > 0 do
begin
declare breakchar varchar(1);
declare done int default 0;
declare t3_cursor cursor for select c from t3;
declare continue handler for not found set done = 1;
set i = i - 1;
select i;
if i = 3 then
iterate again;
end if;
open t3_cursor;
loop
fetch t3_cursor into breakchar;
if done = 1 then
begin
close t3_cursor;
iterate again;
end;
end if;
end loop;
end;
end while;
end|
call bug16887()|
i
9
i
8
i
7
i
6
i
5
i
4
i
3
i
2
i
1
i
0
drop table t3|
drop procedure bug16887|
4693 4694 4695 4696 4697 4698 4699
drop procedure if exists bug16474_1|
drop procedure if exists bug16474_2|
delete from t1|
insert into t1 values ('c', 2), ('b', 3), ('a', 1)|
create procedure bug16474_1()
begin
declare x int;
4700
select id from t1 order by x, id;
4701
end|
4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712
drop procedure if exists bug14945|
create table t3 (id int not null auto_increment primary key)|
create procedure bug14945() deterministic truncate t3|
insert into t3 values (null)|
call bug14945()|
insert into t3 values (null)|
select * from t3|
id
1
drop table t3|
drop procedure bug14945|
4713
create procedure bug16474_2(x int)
4714
select id from t1 order by x, id|
4715 4716 4717
call bug16474_1()|
id
a
4718 4719
b
c
4720 4721 4722
call bug16474_2(1)|
id
a
4723 4724
b
c
4725 4726 4727
call bug16474_2(2)|
id
a
4728 4729
b
c
4730 4731
drop procedure bug16474_1|
drop procedure bug16474_2|
4732
set @x = 2|
4733
select * from t1 order by @x, data|
4734
id	data
4735
a	1
4736 4737
c	2
b	3
4738
delete from t1|
4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755
drop function if exists bug15728|
drop table if exists t3|
create table t3 (
id int not null auto_increment,
primary key (id)
)|
create function bug15728() returns int(11)
return last_insert_id()|
insert into t3 values (0)|
select last_insert_id()|
last_insert_id()
1
select bug15728()|
bug15728()
1
drop function bug15728|
drop table t3|
4756 4757 4758 4759 4760 4761 4762 4763
drop procedure if exists bug18787|
create procedure bug18787()
begin
declare continue handler for sqlexception begin end;
select no_such_function();
end|
call bug18787()|
drop procedure bug18787|
4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792
create database bug18344_012345678901|
use bug18344_012345678901|
create procedure bug18344() begin end|
create procedure bug18344_2() begin end|
create database bug18344_0123456789012|
use bug18344_0123456789012|
create procedure bug18344() begin end|
create procedure bug18344_2() begin end|
use test|
select schema_name from information_schema.schemata where 
schema_name like 'bug18344%'|
schema_name
bug18344_012345678901
bug18344_0123456789012
select routine_name,routine_schema from information_schema.routines where
routine_schema like 'bug18344%'|
routine_name	routine_schema
bug18344	bug18344_012345678901
bug18344_2	bug18344_012345678901
bug18344	bug18344_0123456789012
bug18344_2	bug18344_0123456789012
drop database bug18344_012345678901|
drop database bug18344_0123456789012|
select schema_name from information_schema.schemata where 
schema_name like 'bug18344%'|
schema_name
select routine_name,routine_schema from information_schema.routines where
routine_schema like 'bug18344%'|
routine_name	routine_schema
4793 4794 4795 4796 4797 4798
drop function if exists bug12472|
create function bug12472() returns int return (select count(*) from t1)|
create table t3 as select bug12472() as i|
show create table t3|
Table	Create Table
t3	CREATE TABLE `t3` (
knielsen@mysql.com's avatar
knielsen@mysql.com committed
4799
  `i` int(11) DEFAULT NULL
4800 4801 4802 4803 4804 4805 4806 4807 4808 4809
) ENGINE=MyISAM DEFAULT CHARSET=latin1
select * from t3|
i
0
drop table t3|
create view v1 as select bug12472() as j|
create table t3 as select * from v1|
show create table t3|
Table	Create Table
t3	CREATE TABLE `t3` (
4810
  `j` int(11) DEFAULT NULL
4811 4812 4813 4814 4815 4816 4817
) ENGINE=MyISAM DEFAULT CHARSET=latin1
select * from t3|
j
0
drop table t3|
drop view v1|
drop function bug12472|
4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848
DROP FUNCTION IF EXISTS bug18589_f1|
DROP PROCEDURE IF EXISTS bug18589_p1|
DROP PROCEDURE IF EXISTS bug18589_p2|
CREATE FUNCTION bug18589_f1(arg TEXT) RETURNS TEXT
BEGIN
RETURN CONCAT(arg, "");
END|
CREATE PROCEDURE bug18589_p1(arg TEXT, OUT ret TEXT)
BEGIN
SET ret = CONCAT(arg, "");
END|
CREATE PROCEDURE bug18589_p2(arg TEXT)
BEGIN
DECLARE v TEXT;
CALL bug18589_p1(arg, v);
SELECT v;
END|
SELECT bug18589_f1(REPEAT("a", 767))|
bug18589_f1(REPEAT("a", 767))
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
SET @bug18589_v1 = ""|
CALL bug18589_p1(REPEAT("a", 767), @bug18589_v1)|
SELECT @bug18589_v1|
@bug18589_v1
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
CALL bug18589_p2(REPEAT("a", 767))|
v
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
DROP FUNCTION bug18589_f1|
DROP PROCEDURE bug18589_p1|
DROP PROCEDURE bug18589_p2|
4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878
DROP FUNCTION IF EXISTS bug18037_f1|
DROP PROCEDURE IF EXISTS bug18037_p1|
DROP PROCEDURE IF EXISTS bug18037_p2|
CREATE FUNCTION bug18037_f1() RETURNS INT
BEGIN
RETURN @@server_id;
END|
CREATE PROCEDURE bug18037_p1()
BEGIN
DECLARE v INT DEFAULT @@server_id;
END|
CREATE PROCEDURE bug18037_p2()
BEGIN
CASE @@server_id
WHEN -1 THEN
SELECT 0;
ELSE
SELECT 1;
END CASE;
END|
SELECT bug18037_f1()|
bug18037_f1()
1
CALL bug18037_p1()|
CALL bug18037_p2()|
1
1
DROP FUNCTION bug18037_f1|
DROP PROCEDURE bug18037_p1|
DROP PROCEDURE bug18037_p2|
4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924
use test|
create table t3 (i int)|
insert into t3 values (1), (2)|
create database mysqltest1|
use mysqltest1|
create function bug17199() returns varchar(2) deterministic return 'ok'|
use test|
select *, mysqltest1.bug17199() from t3|
i	mysqltest1.bug17199()
1	ok
2	ok
use mysqltest1|
create function bug18444(i int) returns int no sql deterministic return i + 1|
use test|
select mysqltest1.bug18444(i) from t3|
mysqltest1.bug18444(i)
2
3
drop database mysqltest1|
create database mysqltest1 charset=utf8|
create database mysqltest2 charset=utf8|
create procedure mysqltest1.p1()
begin
-- alters the default collation of database test 
alter database character set koi8r;
end|
use mysqltest1|
call p1()|
show create database mysqltest1|
Database	Create Database
mysqltest1	CREATE DATABASE `mysqltest1` /*!40100 DEFAULT CHARACTER SET koi8r */
show create database mysqltest2|
Database	Create Database
mysqltest2	CREATE DATABASE `mysqltest2` /*!40100 DEFAULT CHARACTER SET utf8 */
alter database mysqltest1 character set utf8|
use mysqltest2|
call mysqltest1.p1()|
show create database mysqltest1|
Database	Create Database
mysqltest1	CREATE DATABASE `mysqltest1` /*!40100 DEFAULT CHARACTER SET koi8r */
show create database mysqltest2|
Database	Create Database
mysqltest2	CREATE DATABASE `mysqltest2` /*!40100 DEFAULT CHARACTER SET utf8 */
drop database mysqltest1|
drop database mysqltest2|
use test|
4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945
drop table if exists t3|
drop procedure if exists bug15217|
create table t3 as select 1|
create procedure bug15217()
begin
declare var1 char(255);
declare cur1 cursor for select * from t3;
open cur1;
fetch cur1 into var1;
select concat('data was: /', var1, '/');
close cur1;
end |
call bug15217()|
concat('data was: /', var1, '/')
data was: /1/
flush tables |
call bug15217()|
concat('data was: /', var1, '/')
data was: /1/
drop table t3|
drop procedure bug15217|
4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957
DROP PROCEDURE IF EXISTS bug21013 |
CREATE PROCEDURE bug21013(IN lim INT)
BEGIN
DECLARE i INT DEFAULT 0;
WHILE (i < lim) DO
SET @b = LOCATE(_latin1'b', @a, 1);
SET i = i + 1;
END WHILE;
END |
SET @a = _latin2"aaaaaaaaaa" |
CALL bug21013(10) |
DROP PROCEDURE bug21013 |
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971
DROP DATABASE IF EXISTS mysqltest1|
DROP DATABASE IF EXISTS mysqltest2|
CREATE DATABASE mysqltest1 DEFAULT CHARACTER SET utf8|
CREATE DATABASE mysqltest2 DEFAULT CHARACTER SET utf8|
use mysqltest1|
CREATE FUNCTION bug16211_f1() RETURNS CHAR(10)
RETURN ""|
CREATE FUNCTION bug16211_f2() RETURNS CHAR(10) CHARSET koi8r
RETURN ""|
CREATE FUNCTION mysqltest2.bug16211_f3() RETURNS CHAR(10)
RETURN ""|
CREATE FUNCTION mysqltest2.bug16211_f4() RETURNS CHAR(10) CHARSET koi8r
RETURN ""|
SHOW CREATE FUNCTION bug16211_f1|
4972
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
4973
bug16211_f1		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f1`() RETURNS char(10) CHARSET utf8
4974
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
4975
SHOW CREATE FUNCTION bug16211_f2|
4976
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
4977
bug16211_f2		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f2`() RETURNS char(10) CHARSET koi8r
4978
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
4979
SHOW CREATE FUNCTION mysqltest2.bug16211_f3|
4980
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
4981
bug16211_f3		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f3`() RETURNS char(10) CHARSET utf8
4982
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
4983
SHOW CREATE FUNCTION mysqltest2.bug16211_f4|
4984
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
4985
bug16211_f4		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f4`() RETURNS char(10) CHARSET koi8r
4986
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
4987 4988 4989 4990
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest1" AND ROUTINE_NAME = "bug16211_f1"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
4991
char(10)
4992 4993 4994 4995
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest1" AND ROUTINE_NAME = "bug16211_f2"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
4996
char(10)
4997 4998 4999 5000
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest2" AND ROUTINE_NAME = "bug16211_f3"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
5001
char(10)
5002 5003 5004 5005
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest2" AND ROUTINE_NAME = "bug16211_f4"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
5006
char(10)
5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021
SELECT CHARSET(bug16211_f1())|
CHARSET(bug16211_f1())
utf8
SELECT CHARSET(bug16211_f2())|
CHARSET(bug16211_f2())
koi8r
SELECT CHARSET(mysqltest2.bug16211_f3())|
CHARSET(mysqltest2.bug16211_f3())
utf8
SELECT CHARSET(mysqltest2.bug16211_f4())|
CHARSET(mysqltest2.bug16211_f4())
koi8r
ALTER DATABASE mysqltest1 CHARACTER SET cp1251|
ALTER DATABASE mysqltest2 CHARACTER SET cp1251|
SHOW CREATE FUNCTION bug16211_f1|
5022
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
5023
bug16211_f1		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f1`() RETURNS char(10) CHARSET utf8
5024
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
5025
SHOW CREATE FUNCTION bug16211_f2|
5026
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
5027
bug16211_f2		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f2`() RETURNS char(10) CHARSET koi8r
5028
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
5029
SHOW CREATE FUNCTION mysqltest2.bug16211_f3|
5030
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
5031
bug16211_f3		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f3`() RETURNS char(10) CHARSET utf8
5032
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
5033
SHOW CREATE FUNCTION mysqltest2.bug16211_f4|
5034
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
5035
bug16211_f4		CREATE DEFINER=`root`@`localhost` FUNCTION `bug16211_f4`() RETURNS char(10) CHARSET koi8r
5036
RETURN ""	latin1	latin1_swedish_ci	utf8_general_ci
5037 5038 5039 5040
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest1" AND ROUTINE_NAME = "bug16211_f1"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
5041
char(10)
5042 5043 5044 5045
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest1" AND ROUTINE_NAME = "bug16211_f2"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
5046
char(10)
5047 5048 5049 5050
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest2" AND ROUTINE_NAME = "bug16211_f3"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
5051
char(10)
5052 5053 5054 5055
SELECT dtd_identifier
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = "mysqltest2" AND ROUTINE_NAME = "bug16211_f4"|
dtd_identifier
Sergey Glukhov's avatar
Sergey Glukhov committed
5056
char(10)
5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110
SELECT CHARSET(bug16211_f1())|
CHARSET(bug16211_f1())
utf8
SELECT CHARSET(bug16211_f2())|
CHARSET(bug16211_f2())
koi8r
SELECT CHARSET(mysqltest2.bug16211_f3())|
CHARSET(mysqltest2.bug16211_f3())
utf8
SELECT CHARSET(mysqltest2.bug16211_f4())|
CHARSET(mysqltest2.bug16211_f4())
koi8r
use test|
DROP DATABASE mysqltest1|
DROP DATABASE mysqltest2|
DROP DATABASE IF EXISTS mysqltest1|
CREATE DATABASE mysqltest1 DEFAULT CHARACTER SET utf8|
use mysqltest1|
CREATE PROCEDURE bug16676_p1(
IN p1 CHAR(10),
INOUT p2 CHAR(10),
OUT p3 CHAR(10))
BEGIN
SELECT CHARSET(p1), COLLATION(p1);
SELECT CHARSET(p2), COLLATION(p2);
SELECT CHARSET(p3), COLLATION(p3);
END|
CREATE PROCEDURE bug16676_p2(
IN p1 CHAR(10) CHARSET koi8r,
INOUT p2 CHAR(10) CHARSET cp1251,
OUT p3 CHAR(10) CHARSET greek)
BEGIN
SELECT CHARSET(p1), COLLATION(p1);
SELECT CHARSET(p2), COLLATION(p2);
SELECT CHARSET(p3), COLLATION(p3);
END|
SET @v2 = 'b'|
SET @v3 = 'c'|
CALL bug16676_p1('a', @v2, @v3)|
CHARSET(p1)	COLLATION(p1)
utf8	utf8_general_ci
CHARSET(p2)	COLLATION(p2)
utf8	utf8_general_ci
CHARSET(p3)	COLLATION(p3)
utf8	utf8_general_ci
CALL bug16676_p2('a', @v2, @v3)|
CHARSET(p1)	COLLATION(p1)
koi8r	koi8r_general_ci
CHARSET(p2)	COLLATION(p2)
cp1251	cp1251_general_ci
CHARSET(p3)	COLLATION(p3)
greek	greek_general_ci
use test|
DROP DATABASE mysqltest1|
5111
drop table if exists t3|
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5112 5113 5114 5115 5116 5117
drop table if exists t4|
drop procedure if exists bug8153_subselect|
drop procedure if exists bug8153_subselect_a|
drop procedure if exists bug8153_subselect_b|
drop procedure if exists bug8153_proc_a|
drop procedure if exists bug8153_proc_b|
5118
create table t3 (a int)|
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136
create table t4 (a int)|
insert into t3 values (1), (1), (2), (3)|
insert into t4 values (1), (1)|
create procedure bug8153_subselect()
begin
declare continue handler for sqlexception
begin
select 'statement failed';
end;
update t3 set a=a+1 where (select a from t4 where a=1) is null;
select 'statement after update';
end|
call bug8153_subselect()|
statement failed
statement failed
statement after update
statement after update
select * from t3|
5137 5138
a
1
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228
1
2
3
call bug8153_subselect()|
statement failed
statement failed
statement after update
statement after update
select * from t3|
a
1
1
2
3
drop procedure bug8153_subselect|
create procedure bug8153_subselect_a()
begin
declare continue handler for sqlexception
begin
select 'in continue handler';
end;
select 'reachable code a1';
call bug8153_subselect_b();
select 'reachable code a2';
end|
create procedure bug8153_subselect_b()
begin
select 'reachable code b1';
update t3 set a=a+1 where (select a from t4 where a=1) is null;
select 'unreachable code b2';
end|
call bug8153_subselect_a()|
reachable code a1
reachable code a1
reachable code b1
reachable code b1
in continue handler
in continue handler
reachable code a2
reachable code a2
select * from t3|
a
1
1
2
3
call bug8153_subselect_a()|
reachable code a1
reachable code a1
reachable code b1
reachable code b1
in continue handler
in continue handler
reachable code a2
reachable code a2
select * from t3|
a
1
1
2
3
drop procedure bug8153_subselect_a|
drop procedure bug8153_subselect_b|
create procedure bug8153_proc_a()
begin
declare continue handler for sqlexception
begin
select 'in continue handler';
end;
select 'reachable code a1';
call bug8153_proc_b();
select 'reachable code a2';
end|
create procedure bug8153_proc_b()
begin
select 'reachable code b1';
select no_such_function();
select 'unreachable code b2';
end|
call bug8153_proc_a()|
reachable code a1
reachable code a1
reachable code b1
reachable code b1
in continue handler
in continue handler
reachable code a2
reachable code a2
drop procedure bug8153_proc_a|
drop procedure bug8153_proc_b|
5229
drop table t3|
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5230
drop table t4|
5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249
drop procedure if exists bug19862|
CREATE TABLE t11 (a INT)|
CREATE TABLE t12 (a INT)|
CREATE FUNCTION bug19862(x INT) RETURNS INT
BEGIN
INSERT INTO t11 VALUES (x);
RETURN x+1;
END|
INSERT INTO t12 VALUES (1), (2)|
SELECT bug19862(a) FROM t12 ORDER BY 1|
bug19862(a)
2
3
SELECT * FROM t11|
a
1
2
DROP TABLE t11, t12|
DROP FUNCTION bug19862|
5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264
drop table if exists t3|
drop database if exists mysqltest1|
create table t3 (a int)|
insert into t3 (a) values (1), (2)|
create database mysqltest1|
use mysqltest1|
drop database mysqltest1|
select database()|
database()
NULL
select * from (select 1 as a) as t1 natural join (select * from test.t3) as t2|
a
1
use test|
drop table t3|
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280
DROP PROCEDURE IF EXISTS bug16899_p1|
DROP FUNCTION IF EXISTS bug16899_f1|
CREATE DEFINER=1234567890abcdefGHIKL@localhost PROCEDURE bug16899_p1()
BEGIN
SET @a = 1;
END|
ERROR HY000: String '1234567890abcdefGHIKL' is too long for user name (should be no longer than 16)
CREATE DEFINER=some_user_name@1234567890abcdefghij1234567890abcdefghij1234567890abcdefghijQWERTY
FUNCTION bug16899_f1() RETURNS INT
BEGIN
RETURN 1;
END|
ERROR HY000: String '1234567890abcdefghij1234567890abcdefghij1234567890abcdefghijQWERTY' is too long for host name (should be no longer than 60)
drop procedure if exists bug21416|
create procedure bug21416() show create procedure bug21416|
call bug21416()|
5281
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5282
bug21416		CREATE DEFINER=`root`@`localhost` PROCEDURE `bug21416`()
5283
show create procedure bug21416	latin1	latin1_swedish_ci	latin1_swedish_ci
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5284
drop procedure bug21416|
5285 5286 5287 5288 5289 5290 5291 5292
DROP PROCEDURE IF EXISTS bug21414|
CREATE PROCEDURE bug21414() SELECT 1|
FLUSH TABLES WITH READ LOCK|
DROP PROCEDURE bug21414|
ERROR HY000: Can't execute the query because you have a conflicting read lock
UNLOCK TABLES|
The following should succeed.
DROP PROCEDURE bug21414|
5293 5294 5295
set names utf8|
drop database if exists това_е_дълго_име_за_база_данни_нали|
create database това_е_дълго_име_за_база_данни_нали|
5296
INSERT INTO mysql.proc VALUES ('това_е_дълго_име_за_база_данни_нали','това_е_процедура_с_доста_дълго_име_нали_и_още_по_дълго','PROCEDURE','това_е_процедура_с_доста_дълго_име_нали_и_още_по_дълго','SQL','CONTAINS_SQL','NO','DEFINER','','','bad_body','root@localhost',now(), now(),'','', 'utf8', 'utf8_general_ci', 'utf8_general_ci', 'n/a')|
5297
call това_е_дълго_име_за_база_данни_нали.това_е_процедура_с_доста_дълго_име_нали_и_още_по_дълго()|
5298
ERROR HY000: Failed to load routine това_е_дълго_име_за_база_данни_нали.това_е_процедура_с_доста_дълго_име_нали_и_още_по_дълго. The table mysql.proc is missing, corrupt, or contains bad data (internal code -6)
5299
drop database това_е_дълго_име_за_база_данни_нали|
5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360
CREATE TABLE t3 (
Member_ID varchar(15) NOT NULL,
PRIMARY KEY (Member_ID)
)|
CREATE TABLE t4 (
ID int(10) unsigned NOT NULL auto_increment,
Member_ID varchar(15) NOT NULL default '',
Action varchar(12) NOT NULL,
Action_Date datetime NOT NULL,
Track varchar(15) default NULL,
User varchar(12) default NULL,
Date_Updated timestamp NOT NULL default CURRENT_TIMESTAMP on update
CURRENT_TIMESTAMP,
PRIMARY KEY (ID),
KEY Action (Action),
KEY Action_Date (Action_Date)
)|
INSERT INTO t3(Member_ID) VALUES
('111111'), ('222222'), ('333333'), ('444444'), ('555555'), ('666666')|
INSERT INTO t4(Member_ID, Action, Action_Date, Track) VALUES
('111111', 'Disenrolled', '2006-03-01', 'CAD' ),
('111111', 'Enrolled', '2006-03-01', 'CAD' ),
('111111', 'Disenrolled', '2006-07-03', 'CAD' ),
('222222', 'Enrolled', '2006-03-07', 'CAD' ),
('222222', 'Enrolled', '2006-03-07', 'CHF' ),
('222222', 'Disenrolled', '2006-08-02', 'CHF' ),
('333333', 'Enrolled', '2006-03-01', 'CAD' ),
('333333', 'Disenrolled', '2006-03-01', 'CAD' ),
('444444', 'Enrolled', '2006-03-01', 'CAD' ),
('555555', 'Disenrolled', '2006-03-01', 'CAD' ),
('555555', 'Enrolled', '2006-07-21', 'CAD' ),
('555555', 'Disenrolled', '2006-03-01', 'CHF' ),
('666666', 'Enrolled', '2006-02-09', 'CAD' ),
('666666', 'Enrolled', '2006-05-12', 'CHF' ),
('666666', 'Disenrolled', '2006-06-01', 'CAD' )|
DROP FUNCTION IF EXISTS bug21493|
CREATE FUNCTION bug21493(paramMember VARCHAR(15)) RETURNS varchar(45)
BEGIN
DECLARE tracks VARCHAR(45);
SELECT GROUP_CONCAT(Track SEPARATOR ', ') INTO tracks FROM t4
WHERE Member_ID=paramMember AND Action='Enrolled' AND 
(Track,Action_Date) IN (SELECT Track, MAX(Action_Date) FROM t4
WHERE Member_ID=paramMember GROUP BY Track);
RETURN tracks;
END|
SELECT bug21493('111111')|
bug21493('111111')
NULL
SELECT bug21493('222222')|
bug21493('222222')
CAD
SELECT bug21493(Member_ID) FROM t3|
bug21493(Member_ID)
NULL
CAD
CAD
CAD
CAD
CHF
DROP FUNCTION bug21493|
DROP TABLE t3,t4|
kostja@bodhi.local's avatar
kostja@bodhi.local committed
5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516
drop function if exists func_20028_a|
drop function if exists func_20028_b|
drop function if exists func_20028_c|
drop procedure if exists proc_20028_a|
drop procedure if exists proc_20028_b|
drop procedure if exists proc_20028_c|
drop table if exists table_20028|
create table table_20028 (i int)|
SET @save_sql_mode=@@sql_mode|
SET sql_mode=''|
create function func_20028_a() returns integer
begin
declare temp integer;
select i into temp from table_20028 limit 1;
return ifnull(temp, 0);
end|
create function func_20028_b() returns integer
begin
return func_20028_a();
end|
create function func_20028_c() returns integer
begin
declare div_zero integer;
set SQL_MODE='TRADITIONAL';
select 1/0 into div_zero;
return div_zero;
end|
create procedure proc_20028_a()
begin
declare temp integer;
select i into temp from table_20028 limit 1;
end|
create procedure proc_20028_b()
begin
call proc_20028_a();
end|
create procedure proc_20028_c()
begin
declare div_zero integer;
set SQL_MODE='TRADITIONAL';
select 1/0 into div_zero;
end|
select func_20028_a()|
func_20028_a()
0
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
select func_20028_b()|
func_20028_b()
0
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
select func_20028_c()|
ERROR 22012: Division by 0
call proc_20028_a()|
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
call proc_20028_b()|
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
call proc_20028_c()|
ERROR 22012: Division by 0
SET sql_mode='TRADITIONAL'|
drop function func_20028_a|
drop function func_20028_b|
drop function func_20028_c|
drop procedure proc_20028_a|
drop procedure proc_20028_b|
drop procedure proc_20028_c|
create function func_20028_a() returns integer
begin
declare temp integer;
select i into temp from table_20028 limit 1;
return ifnull(temp, 0);
end|
create function func_20028_b() returns integer
begin
return func_20028_a();
end|
create function func_20028_c() returns integer
begin
declare div_zero integer;
set SQL_MODE='';
select 1/0 into div_zero;
return div_zero;
end|
create procedure proc_20028_a()
begin
declare temp integer;
select i into temp from table_20028 limit 1;
end|
create procedure proc_20028_b()
begin
call proc_20028_a();
end|
create procedure proc_20028_c()
begin
declare div_zero integer;
set SQL_MODE='';
select 1/0 into div_zero;
end|
select func_20028_a()|
func_20028_a()
0
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
select func_20028_b()|
func_20028_b()
0
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
select func_20028_c()|
func_20028_c()
NULL
call proc_20028_a()|
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
call proc_20028_b()|
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
call proc_20028_c()|
SET @@sql_mode=@save_sql_mode|
drop function func_20028_a|
drop function func_20028_b|
drop function func_20028_c|
drop procedure proc_20028_a|
drop procedure proc_20028_b|
drop procedure proc_20028_c|
drop table table_20028|
drop procedure if exists proc_21462_a|
drop procedure if exists proc_21462_b|
create procedure proc_21462_a()
begin
select "Called A";
end|
create procedure proc_21462_b(x int)
begin
select "Called B";
end|
call proc_21462_a|
Called A
Called A
call proc_21462_a()|
Called A
Called A
call proc_21462_a(1)|
ERROR 42000: Incorrect number of arguments for PROCEDURE test.proc_21462_a; expected 0, got 1
call proc_21462_b|
ERROR 42000: Incorrect number of arguments for PROCEDURE test.proc_21462_b; expected 1, got 0
call proc_21462_b()|
ERROR 42000: Incorrect number of arguments for PROCEDURE test.proc_21462_b; expected 1, got 0
call proc_21462_b(1)|
Called B
Called B
drop procedure proc_21462_a|
drop procedure proc_21462_b|
5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533
drop table if exists t3|
drop procedure if exists proc_bug19733|
create table t3 (s1 int)|
create procedure proc_bug19733()
begin
declare v int default 0;
while v < 100 do
create index i on t3 (s1);
drop index i on t3;
set v = v + 1;
end while;
end|
call proc_bug19733()|
call proc_bug19733()|
call proc_bug19733()|
drop procedure proc_bug19733|
drop table t3|
5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559
DROP PROCEDURE IF EXISTS p1|
DROP VIEW IF EXISTS v1, v2|
DROP TABLE IF EXISTS t3, t4|
CREATE TABLE t3 (t3_id INT)|
INSERT INTO t3 VALUES (0)|
INSERT INTO t3 VALUES (1)|
CREATE TABLE t4 (t4_id INT)|
INSERT INTO t4 VALUES (2)|
CREATE VIEW v1 AS
SELECT t3.t3_id, t4.t4_id
FROM t3 JOIN t4 ON t3.t3_id = 0|
CREATE VIEW v2 AS
SELECT t3.t3_id AS t3_id_1, v1.t3_id AS t3_id_2, v1.t4_id
FROM t3 LEFT JOIN v1 ON t3.t3_id = 0|
CREATE PROCEDURE p1() SELECT * FROM v2|
CALL p1()|
t3_id_1	t3_id_2	t4_id
0	0	2
1	NULL	NULL
CALL p1()|
t3_id_1	t3_id_2	t4_id
0	0	2
1	NULL	NULL
DROP PROCEDURE p1|
DROP VIEW v1, v2|
DROP TABLE t3, t4|
5560
End of 5.0 tests
5561 5562 5563 5564 5565
Begin of 5.1 tests
drop function if exists pi;
create function pi() returns varchar(50)
return "pie, my favorite desert.";
Warnings:
5566
Note	1585	This function 'pi' has the same name as a native function
5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614
SET @save_sql_mode=@@sql_mode;
SET SQL_MODE='IGNORE_SPACE';
select pi(), pi ();
pi()	pi ()
3.141593	3.141593
select test.pi(), test.pi ();
test.pi()	test.pi ()
pie, my favorite desert.	pie, my favorite desert.
SET SQL_MODE='';
select pi(), pi ();
pi()	pi ()
3.141593	3.141593
select test.pi(), test.pi ();
test.pi()	test.pi ()
pie, my favorite desert.	pie, my favorite desert.
SET @@sql_mode=@save_sql_mode;
drop function pi;
drop function if exists test.database;
drop function if exists test.current_user;
drop function if exists test.md5;
create database nowhere;
use nowhere;
drop database nowhere;
SET @save_sql_mode=@@sql_mode;
SET SQL_MODE='IGNORE_SPACE';
select database(), database ();
database()	database ()
NULL	NULL
select current_user(), current_user ();
current_user()	current_user ()
root@localhost	root@localhost
select md5("aaa"), md5 ("aaa");
md5("aaa")	md5 ("aaa")
47bce5c74f589f4867dbd57e9ca9f808	47bce5c74f589f4867dbd57e9ca9f808
SET SQL_MODE='';
select database(), database ();
database()	database ()
NULL	NULL
select current_user(), current_user ();
current_user()	current_user ()
root@localhost	root@localhost
select md5("aaa"), md5 ("aaa");
md5("aaa")	md5 ("aaa")
47bce5c74f589f4867dbd57e9ca9f808	47bce5c74f589f4867dbd57e9ca9f808
use test;
create function `database`() returns varchar(50)
return "Stored function database";
Warnings:
5615
Note	1585	This function 'database' has the same name as a native function
5616 5617 5618
create function `current_user`() returns varchar(50)
return "Stored function current_user";
Warnings:
5619
Note	1585	This function 'current_user' has the same name as a native function
5620 5621 5622
create function md5(x varchar(50)) returns varchar(50)
return "Stored function md5";
Warnings:
5623
Note	1585	This function 'md5' has the same name as a native function
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667
SET SQL_MODE='IGNORE_SPACE';
select database(), database ();
database()	database ()
test	test
select current_user(), current_user ();
current_user()	current_user ()
root@localhost	root@localhost
select md5("aaa"), md5 ("aaa");
md5("aaa")	md5 ("aaa")
47bce5c74f589f4867dbd57e9ca9f808	47bce5c74f589f4867dbd57e9ca9f808
select test.database(), test.database ();
test.database()	test.database ()
Stored function database	Stored function database
select test.current_user(), test.current_user ();
test.current_user()	test.current_user ()
Stored function current_user	Stored function current_user
select test.md5("aaa"), test.md5 ("aaa");
test.md5("aaa")	test.md5 ("aaa")
Stored function md5	Stored function md5
SET SQL_MODE='';
select database(), database ();
database()	database ()
test	test
select current_user(), current_user ();
current_user()	current_user ()
root@localhost	root@localhost
select md5("aaa"), md5 ("aaa");
md5("aaa")	md5 ("aaa")
47bce5c74f589f4867dbd57e9ca9f808	47bce5c74f589f4867dbd57e9ca9f808
select test.database(), test.database ();
test.database()	test.database ()
Stored function database	Stored function database
select test.current_user(), test.current_user ();
test.current_user()	test.current_user ()
Stored function current_user	Stored function current_user
select test.md5("aaa"), test.md5 ("aaa");
test.md5("aaa")	test.md5 ("aaa")
Stored function md5	Stored function md5
SET @@sql_mode=@save_sql_mode;
drop function test.database;
drop function test.current_user;
drop function md5;
use test;
End of 5.1 tests
5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747
DROP TABLE IF EXISTS bug23760|
DROP TABLE IF EXISTS bug23760_log|
DROP PROCEDURE IF EXISTS bug23760_update_log|
DROP PROCEDURE IF EXISTS bug23760_test_row_count|
DROP FUNCTION IF EXISTS bug23760_rc_test|
CREATE TABLE bug23760 (
id INT NOT NULL AUTO_INCREMENT ,
num INT NOT NULL ,
PRIMARY KEY ( id ) 
)|
CREATE TABLE bug23760_log (
id INT NOT NULL AUTO_INCREMENT ,
reason VARCHAR(50)NULL ,
ammount INT NOT NULL ,
PRIMARY KEY ( id ) 
)|
CREATE PROCEDURE bug23760_update_log(r Varchar(50), a INT)
BEGIN
INSERT INTO bug23760_log (reason, ammount) VALUES(r, a);
END|
CREATE PROCEDURE bug23760_test_row_count()
BEGIN
UPDATE bug23760 SET num = num + 1;
CALL bug23760_update_log('Test is working', ROW_COUNT());
UPDATE bug23760 SET num = num - 1;
END|
CREATE PROCEDURE bug23760_test_row_count2(level INT)
BEGIN
IF level THEN
UPDATE bug23760 SET num = num + 1;
CALL bug23760_update_log('Test2 is working', ROW_COUNT());
CALL bug23760_test_row_count2(level - 1);
END IF;
END|
CREATE FUNCTION bug23760_rc_test(in_var INT) RETURNS INT RETURN in_var|
INSERT INTO bug23760 (num) VALUES (0), (1), (1), (2), (3), (5), (8)|
SELECT ROW_COUNT()|
ROW_COUNT()
7
CALL bug23760_test_row_count()|
SELECT * FROM bug23760_log ORDER BY id|
id	reason	ammount
1	Test is working	7
SET @save_max_sp_recursion= @@max_sp_recursion_depth|
SELECT @save_max_sp_recursion|
@save_max_sp_recursion
0
SET max_sp_recursion_depth= 5|
SELECT @@max_sp_recursion_depth|
@@max_sp_recursion_depth
5
CALL bug23760_test_row_count2(2)|
SELECT ROW_COUNT()|
ROW_COUNT()
1
SELECT * FROM bug23760_log ORDER BY id|
id	reason	ammount
1	Test is working	7
2	Test2 is working	7
3	Test2 is working	7
SELECT * FROM bug23760 ORDER by ID|
id	num
1	2
2	3
3	3
4	4
5	5
6	7
7	10
SET max_sp_recursion_depth= @save_max_sp_recursion|
SELECT bug23760_rc_test(123)|
bug23760_rc_test(123)
123
INSERT INTO bug23760 (num) VALUES (13), (21), (34), (55)|
SELECT bug23760_rc_test(ROW_COUNT())|
bug23760_rc_test(ROW_COUNT())
4
DROP TABLE bug23760, bug23760_log|
DROP PROCEDURE bug23760_update_log|
DROP PROCEDURE bug23760_test_row_count|
5748
DROP PROCEDURE bug23760_test_row_count2|
5749
DROP FUNCTION bug23760_rc_test|
5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765
DROP PROCEDURE IF EXISTS bug24117|
DROP TABLE IF EXISTS t3|
CREATE TABLE t3(c1 ENUM('abc'))|
INSERT INTO t3 VALUES('abc')|
CREATE PROCEDURE bug24117()
BEGIN
DECLARE t3c1 ENUM('abc');
DECLARE mycursor CURSOR FOR SELECT c1 FROM t3;
OPEN mycursor;
FLUSH TABLES;
FETCH mycursor INTO t3c1;
CLOSE mycursor;
END|
CALL bug24117()|
DROP PROCEDURE bug24117|
DROP TABLE t3|
malff/marcsql@weblab.(none)'s avatar
malff/marcsql@weblab.(none) committed
5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799
drop function if exists func_8407_a|
drop function if exists func_8407_b|
create function func_8407_a() returns int
begin
declare x int;
declare continue handler for sqlexception
begin
end;
select 1 from no_such_view limit 1 into x;
return x;
end|
create function func_8407_b() returns int
begin
declare x int default 0;
declare continue handler for sqlstate '42S02'
  begin
set x:= x+1000;
end;
case (select 1 from no_such_view limit 1)
when 1 then set x:= x+1;
when 2 then set x:= x+2;
else set x:= x+100;
end case;
set x:=x + 500;
return x;
end|
select func_8407_a()|
func_8407_a()
NULL
select func_8407_b()|
func_8407_b()
1500
drop function func_8407_a|
drop function func_8407_b|
5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964
drop table if exists table_26503|
drop procedure if exists proc_26503_ok_1|
drop procedure if exists proc_26503_ok_2|
drop procedure if exists proc_26503_ok_3|
drop procedure if exists proc_26503_ok_4|
create table table_26503(a int unique)|
create procedure proc_26503_ok_1(v int)
begin
declare i int default 5;
declare continue handler for sqlexception
begin
select 'caught something';
retry:
while i > 0 do
begin
set i = i - 1;
select 'looping', i;
iterate retry;
select 'dead code';
end;
end while retry;
select 'leaving handler';
end;
select 'do something';
insert into table_26503 values (v);
select 'do something again';
insert into table_26503 values (v);
end|
create procedure proc_26503_ok_2(v int)
begin
declare i int default 5;
declare continue handler for sqlexception
begin
select 'caught something';
retry:
while i > 0 do
begin
set i = i - 1;
select 'looping', i;
leave retry;
select 'dead code';
end;
end while;
select 'leaving handler';
end;
select 'do something';
insert into table_26503 values (v);
select 'do something again';
insert into table_26503 values (v);
end|
create procedure proc_26503_ok_3(v int)
begin
declare i int default 5;
retry:
begin
declare continue handler for sqlexception
begin
select 'caught something';
retry:
while i > 0 do
begin
set i = i - 1;
select 'looping', i;
iterate retry;
select 'dead code';
end;
end while retry;
select 'leaving handler';
end;
select 'do something';
insert into table_26503 values (v);
select 'do something again';
insert into table_26503 values (v);
end;
end|
create procedure proc_26503_ok_4(v int)
begin
declare i int default 5;
retry:
begin
declare continue handler for sqlexception
begin
select 'caught something';
retry:
while i > 0 do
begin
set i = i - 1;
select 'looping', i;
leave retry;
select 'dead code';
end;
end while;
select 'leaving handler';
end;
select 'do something';
insert into table_26503 values (v);
select 'do something again';
insert into table_26503 values (v);
end;
end|
call proc_26503_ok_1(1)|
do something
do something
do something again
do something again
caught something
caught something
looping	i
looping	4
looping	i
looping	3
looping	i
looping	2
looping	i
looping	1
looping	i
looping	0
leaving handler
leaving handler
call proc_26503_ok_2(2)|
do something
do something
do something again
do something again
caught something
caught something
looping	i
looping	4
leaving handler
leaving handler
call proc_26503_ok_3(3)|
do something
do something
do something again
do something again
caught something
caught something
looping	i
looping	4
looping	i
looping	3
looping	i
looping	2
looping	i
looping	1
looping	i
looping	0
leaving handler
leaving handler
call proc_26503_ok_4(4)|
do something
do something
do something again
do something again
caught something
caught something
looping	i
looping	4
leaving handler
leaving handler
drop table table_26503|
drop procedure proc_26503_ok_1|
drop procedure proc_26503_ok_2|
drop procedure proc_26503_ok_3|
drop procedure proc_26503_ok_4|
5965 5966 5967 5968 5969 5970 5971 5972
DROP FUNCTION IF EXISTS bug25373|
CREATE FUNCTION bug25373(p1 INTEGER) RETURNS INTEGER
LANGUAGE SQL DETERMINISTIC
RETURN p1;|
CREATE TABLE t3 (f1 INT, f2 FLOAT)|
INSERT INTO t3 VALUES (1, 3.4), (1, 2), (1, 0.9), (2, 8), (2, 7)|
SELECT SUM(f2), bug25373(f1) FROM t3 GROUP BY bug25373(f1) WITH ROLLUP|
SUM(f2)	bug25373(f1)
5973
6.300000071525574	1
5974
15	2
5975
21.300000071525574	NULL
5976 5977
DROP FUNCTION bug25373|
DROP TABLE t3|
malff/marcsql@weblab.(none)'s avatar
malff/marcsql@weblab.(none) committed
5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992
DROP DATABASE IF EXISTS mysqltest1|
DROP DATABASE IF EXISTS mysqltest2|
CREATE DATABASE mysqltest1|
CREATE DATABASE mysqltest2|
CREATE PROCEDURE mysqltest1.p1()
DROP DATABASE mysqltest2|
use mysqltest2|
CALL mysqltest1.p1()|
Warnings:
Note	1049	Unknown database 'mysqltest2'
SELECT DATABASE()|
DATABASE()
NULL
DROP DATABASE mysqltest1|
use test|
5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026
drop function if exists bug20777|
drop table if exists examplebug20777|
create function bug20777(f1 bigint unsigned) returns bigint unsigned
begin
set f1 = (f1 - 10); set f1 = (f1 + 10);
return f1;
end|
select bug20777(9223372036854775803) as '9223372036854775803   2**63-5';
9223372036854775803   2**63-5
9223372036854775803
select bug20777(9223372036854775804) as '9223372036854775804   2**63-4';
9223372036854775804   2**63-4
9223372036854775804
select bug20777(9223372036854775805) as '9223372036854775805   2**63-3';
9223372036854775805   2**63-3
9223372036854775805
select bug20777(9223372036854775806) as '9223372036854775806   2**63-2';
9223372036854775806   2**63-2
9223372036854775806
select bug20777(9223372036854775807) as '9223372036854775807   2**63-1';
9223372036854775807   2**63-1
9223372036854775807
select bug20777(9223372036854775808) as '9223372036854775808   2**63+0';
9223372036854775808   2**63+0
9223372036854775808
select bug20777(9223372036854775809) as '9223372036854775809   2**63+1';
9223372036854775809   2**63+1
9223372036854775809
select bug20777(9223372036854775810) as '9223372036854775810   2**63+2';
9223372036854775810   2**63+2
9223372036854775810
select bug20777(-9223372036854775808) as 'lower bounds signed bigint';
lower bounds signed bigint
0
kostja@bodhi.(none)'s avatar
kostja@bodhi.(none) committed
6027 6028
Warnings:
Warning	1264	Out of range value for column 'f1' at row 1
6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040
select bug20777(9223372036854775807) as 'upper bounds signed bigint';
upper bounds signed bigint
9223372036854775807
select bug20777(0) as 'lower bounds unsigned bigint';
lower bounds unsigned bigint
0
select bug20777(18446744073709551615) as 'upper bounds unsigned bigint';
upper bounds unsigned bigint
18446744073709551615
select bug20777(18446744073709551616) as 'upper bounds unsigned bigint + 1';
upper bounds unsigned bigint + 1
18446744073709551615
kostja@bodhi.(none)'s avatar
kostja@bodhi.(none) committed
6041 6042
Warnings:
Warning	1264	Out of range value for column 'f1' at row 1
6043 6044 6045
select bug20777(-1) as 'lower bounds unsigned bigint - 1';
lower bounds unsigned bigint - 1
0
kostja@bodhi.(none)'s avatar
kostja@bodhi.(none) committed
6046 6047
Warnings:
Warning	1264	Out of range value for column 'f1' at row 1
6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058
create table examplebug20777 as select 
0 as 'i',
bug20777(9223372036854775806) as '2**63-2',
bug20777(9223372036854775807) as '2**63-1',
bug20777(9223372036854775808) as '2**63',
bug20777(9223372036854775809) as '2**63+1',
bug20777(18446744073709551614) as '2**64-2',
bug20777(18446744073709551615) as '2**64-1', 
bug20777(18446744073709551616) as '2**64',
bug20777(0) as '0',
bug20777(-1) as '-1';
kostja@bodhi.(none)'s avatar
kostja@bodhi.(none) committed
6059 6060 6061
Warnings:
Warning	1264	Out of range value for column 'f1' at row 1
Warning	1264	Out of range value for column 'f1' at row 1
6062
insert into examplebug20777 values (1, 9223372036854775806, 9223372036854775807, 223372036854775808, 9223372036854775809, 18446744073709551614, 18446744073709551615, 8446744073709551616, 0, -1);
kostja@bodhi.(none)'s avatar
kostja@bodhi.(none) committed
6063 6064
Warnings:
Warning	1264	Out of range value for column '-1' at row 1
6065 6066 6067
show create table examplebug20777;
Table	Create Table
examplebug20777	CREATE TABLE `examplebug20777` (
Kristofer.Pettersson@naruto's avatar
Kristofer.Pettersson@naruto committed
6068 6069 6070 6071 6072 6073 6074 6075 6076 6077
  `i` int(1) NOT NULL DEFAULT '0',
  `2**63-2` bigint(20) unsigned DEFAULT NULL,
  `2**63-1` bigint(20) unsigned DEFAULT NULL,
  `2**63` bigint(20) unsigned DEFAULT NULL,
  `2**63+1` bigint(20) unsigned DEFAULT NULL,
  `2**64-2` bigint(20) unsigned DEFAULT NULL,
  `2**64-1` bigint(20) unsigned DEFAULT NULL,
  `2**64` bigint(20) unsigned DEFAULT NULL,
  `0` bigint(20) unsigned DEFAULT NULL,
  `-1` bigint(20) unsigned DEFAULT NULL
6078 6079 6080 6081 6082 6083 6084 6085 6086 6087
) ENGINE=MyISAM DEFAULT CHARSET=latin1
select * from examplebug20777 order by i;
i	2**63-2	2**63-1	2**63	2**63+1	2**64-2	2**64-1	2**64	0	-1
0	9223372036854775806	9223372036854775807	9223372036854775808	9223372036854775809	18446744073709551614	18446744073709551615	18446744073709551615	0	0
1	9223372036854775806	9223372036854775807	223372036854775808	9223372036854775809	18446744073709551614	18446744073709551615	8446744073709551616	0	0
drop table examplebug20777;
select bug20777(18446744073709551613)+1;
bug20777(18446744073709551613)+1
18446744073709551614
drop function bug20777;
kostja@vajra.(none)'s avatar
kostja@vajra.(none) committed
6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108
DROP FUNCTION IF EXISTS bug5274_f1|
DROP FUNCTION IF EXISTS bug5274_f2|
CREATE FUNCTION bug5274_f1(p1 CHAR) RETURNS CHAR
RETURN CONCAT(p1, p1)|
CREATE FUNCTION bug5274_f2() RETURNS CHAR
BEGIN
DECLARE v1 INT DEFAULT 0;
DECLARE v2 CHAR DEFAULT 'x';
WHILE v1 < 30 DO
SET v1 = v1 + 1;
SET v2 = bug5274_f1(v2);
END WHILE;
RETURN v2;
END|
SELECT bug5274_f2()|
bug5274_f2()
x
Warnings:
Warning	1265	Data truncated for column 'bug5274_f1' at row 1
DROP FUNCTION bug5274_f1|
DROP FUNCTION bug5274_f2|
6109 6110 6111
drop procedure if exists proc_21513|
create procedure proc_21513()`my_label`:BEGIN END|
show create procedure proc_21513|
6112
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
6113
proc_21513		CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_21513`()
6114
`my_label`:BEGIN END	utf8	utf8_general_ci	latin1_swedish_ci
6115
drop procedure proc_21513|
6116
End of 5.0 tests.
6117
drop table t1,t2;
malff/marcsql@weblab.(none)'s avatar
malff/marcsql@weblab.(none) committed
6118 6119 6120
CREATE TABLE t1 (a int auto_increment primary key) engine=MyISAM;
CREATE TABLE t2 (a int auto_increment primary key, b int) engine=innodb;
set @a=0;
gshchepa/uchum@gleb.loc's avatar
gshchepa/uchum@gleb.loc committed
6121
CREATE function bug27354() RETURNS int not deterministic
malff/marcsql@weblab.(none)'s avatar
malff/marcsql@weblab.(none) committed
6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142
begin
insert into t1 values (null);
set @a=@a+1;
return @a;
end|
update t2 set b=1 where a=bug27354();
select count(t_1.a),count(t_2.a) from t1 as t_1, t2 as t_2 /* must be 0,0 */;
count(t_1.a)	count(t_2.a)
0	0
insert into t2 values (1,1),(2,2),(3,3);
update t2 set b=-b where a=bug27354();
select * from t2 /* must return 1,-1 ... */;
a	b
1	-1
2	-2
3	-3
select count(*) from t1 /* must be 3 */;
count(*)
3
drop table t1,t2;
drop function   bug27354;
6143 6144 6145 6146 6147
CREATE TABLE t1 (a INT);
INSERT INTO t1 VALUES (1),(2);
CREATE FUNCTION metered(a INT) RETURNS INT RETURN 12;
CREATE VIEW v1 AS SELECT test.metered(a) as metered FROM t1;
SHOW CREATE VIEW v1;
6148 6149
View	Create View	character_set_client	collation_connection
v1	CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `test`.`metered`(`t1`.`a`) AS `metered` from `t1`	utf8	utf8_general_ci
6150 6151 6152
DROP VIEW v1;
DROP FUNCTION metered;
DROP TABLE t1;
gshchepa/uchum@gleb.loc's avatar
gshchepa/uchum@gleb.loc committed
6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216
SET @p1_p2_cnt= 2;
CREATE TABLE t1 (c1 INT);
CREATE VIEW v1 AS SELECT * FROM t1;
PREPARE s1 FROM 'SELECT c1 FROM v1';
EXECUTE s1;
c1
EXECUTE s1;
c1
CREATE PROCEDURE p1(IN loops BIGINT(19) UNSIGNED)
BEGIN
WHILE loops > 0 DO
SELECT c1 FROM v1;
SET loops = loops - 1;
END WHILE;
END|
CREATE PROCEDURE p2(IN loops BIGINT(19) UNSIGNED)
BEGIN
WHILE loops > 0 DO
SELECT c1 FROM v1;
CALL p1(@p1_p2_cnt);
SET loops = loops - 1;
END WHILE;
END|
CREATE FUNCTION f1(loops INT UNSIGNED)
RETURNS INT
BEGIN
DECLARE tmp INT;
WHILE loops > 0 DO
SELECT c1 INTO tmp FROM v1;
SET loops = loops - 1;
END WHILE;
RETURN loops;
END|
CALL p1(2);
c1
c1
CALL p2(2);
c1
c1
c1
c1
c1
c1
SELECT f1(2);
f1(2)
0
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
PREPARE s1 FROM 'SELECT f1(2)';
EXECUTE s1;
f1(2)
0
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
EXECUTE s1;
f1(2)
0
Warnings:
Warning	1329	No data - zero rows fetched, selected, or processed
DROP PROCEDURE p1;
DROP PROCEDURE p2;
DROP FUNCTION f1;
DROP VIEW v1;
DROP TABLE t1;
6217 6218 6219 6220 6221 6222
drop database if exists mysqltest_db1;
create database mysqltest_db1;
create procedure mysqltest_db1.sp_bug28551() begin end;
call mysqltest_db1.sp_bug28551();
show warnings;
Level	Code	Message
Marc Alff's avatar
Marc Alff committed
6223
Note	1008	Can't drop database 'mysqltest_db1'; database doesn't exist
6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242
drop database mysqltest_db1;
drop database if exists mysqltest_db1;
drop table if exists test.t1;
create database mysqltest_db1;
use mysqltest_db1;
drop database mysqltest_db1;
create table test.t1 (id int);
insert into test.t1 (id) values (1);
create procedure test.sp_bug29050() begin select * from t1; end//
show warnings;
Level	Code	Message
call test.sp_bug29050();
id
1
show warnings;
Level	Code	Message
use test;
drop procedure sp_bug29050;
drop table t1;
6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253
SET NAMES latin1;
CREATE PROCEDURE p1()
BEGIN
DECLARE  INT;
SELECT ;
END|
CALL p1();

NULL
SET NAMES default;
DROP PROCEDURE p1;
6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286
drop procedure if exists proc_25411_a;
drop procedure if exists proc_25411_b;
drop procedure if exists proc_25411_c;
create procedure proc_25411_a()
begin
/* real comment */
select 1;
/*! select 2; */
select 3;
/*!00000 select 4; */
/*!99999 select 5; */
end
$$
create procedure proc_25411_b(
/* real comment */
/*! p1 int, */
/*!00000 p2 int */
/*!99999 ,p3 int */
)
begin
select p1, p2;
end
$$
create procedure proc_25411_c()
begin
select 1/*!,2*//*!00000,3*//*!99999,4*/;
select 1/*! ,2*//*!00000 ,3*//*!99999 ,4*/;
select 1/*!,2 *//*!00000,3 *//*!99999,4 */;
select 1/*! ,2 *//*!00000 ,3 *//*!99999 ,4 */;
select 1 /*!,2*/ /*!00000,3*/ /*!99999,4*/ ;
end
$$
show create procedure proc_25411_a;
6287
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
6288 6289 6290 6291 6292 6293 6294 6295
proc_25411_a		CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_25411_a`()
begin
/* real comment */
select 1;
 select 2; 
select 3;
 select 4; 

6296
end	latin1	latin1_swedish_ci	latin1_swedish_ci
6297 6298 6299 6300 6301 6302 6303 6304 6305 6306
call proc_25411_a();
1
1
2
2
3
3
4
4
show create procedure proc_25411_b;
6307
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
6308 6309 6310 6311 6312 6313 6314 6315
proc_25411_b		CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_25411_b`(
/* real comment */
 p1 int, 
 p2 int 

)
begin
select p1, p2;
6316
end	latin1	latin1_swedish_ci	latin1_swedish_ci
6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345
select name, param_list, body from mysql.proc where name like "%25411%";
name	param_list	body
proc_25411_a		begin
/* real comment */
select 1;
 select 2; 
select 3;
 select 4; 

end
proc_25411_b	
/* real comment */
 p1 int, 
 p2 int 

	begin
select p1, p2;
end
proc_25411_c		begin
select 1,2,3;
select 1 ,2 ,3;
select 1,2 ,3 ;
select 1 ,2  ,3 ;
select 1 ,2 ,3  ;
end
call proc_25411_b(10, 20);
p1	p2
10	20
show create procedure proc_25411_c;
6346
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
6347 6348 6349 6350 6351 6352 6353
proc_25411_c		CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_25411_c`()
begin
select 1,2,3;
select 1 ,2 ,3;
select 1,2 ,3 ;
select 1 ,2  ,3 ;
select 1 ,2 ,3  ;
6354
end	latin1	latin1_swedish_ci	latin1_swedish_ci
6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372
call proc_25411_c();
1	2	3
1	2	3
1	2	3
1	2	3
1	2	3
1	2	3
1	2	3
1	2	3
1	2	3
1	2	3
drop procedure proc_25411_a;
drop procedure proc_25411_b;
drop procedure proc_25411_c;
drop procedure if exists proc_26302;
create procedure proc_26302()
select 1 /* testing */;
show create procedure proc_26302;
6373
Procedure	sql_mode	Create Procedure	character_set_client	collation_connection	Database Collation
6374
proc_26302		CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_26302`()
6375
select 1 /* testing */	latin1	latin1_swedish_ci	latin1_swedish_ci
6376 6377 6378 6379 6380
select ROUTINE_NAME, ROUTINE_DEFINITION from information_schema.ROUTINES
where ROUTINE_NAME = "proc_26302";
ROUTINE_NAME	ROUTINE_DEFINITION
proc_26302	select 1 /* testing */
drop procedure proc_26302;
gshchepa/uchum@gleb.loc's avatar
gshchepa/uchum@gleb.loc committed
6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408
CREATE FUNCTION f1() RETURNS INT DETERMINISTIC RETURN 2;
CREATE FUNCTION f2(I INT) RETURNS INT DETERMINISTIC RETURN 3;
CREATE TABLE t1 (c1 INT, INDEX(c1));
INSERT INTO t1 VALUES (1), (2), (3), (4), (5);
CREATE VIEW v1 AS SELECT c1 FROM t1;
EXPLAIN SELECT * FROM t1 WHERE c1=1;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ref	c1	c1	5	const	1	Using where; Using index
EXPLAIN SELECT * FROM t1 WHERE c1=f1();
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ref	c1	c1	5	const	1	Using where; Using index
EXPLAIN SELECT * FROM v1 WHERE c1=1;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ref	c1	c1	5	const	1	Using where; Using index
EXPLAIN SELECT * FROM v1 WHERE c1=f1();
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ref	c1	c1	5	const	1	Using where; Using index
EXPLAIN SELECT * FROM t1 WHERE c1=f2(10);
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ref	c1	c1	5	const	1	Using where; Using index
EXPLAIN SELECT * FROM t1 WHERE c1=f2(c1);
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	index	NULL	c1	5	NULL	5	Using where; Using index
EXPLAIN SELECT * FROM t1 WHERE c1=f2(rand());
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	index	NULL	c1	5	NULL	5	Using where; Using index
DROP VIEW v1;
DROP FUNCTION f1;
6409
DROP FUNCTION f2;
gshchepa/uchum@gleb.loc's avatar
gshchepa/uchum@gleb.loc committed
6410
DROP TABLE t1;
6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423
create function f1()
returns int(11)
not deterministic
contains sql
sql security definer
comment ''
begin
declare x int(11);
set x=-1;
return x;
end|
create view v1 as select 1 as one, f1() as days;
show create view test.v1;
gshchepa/uchum@gleb.loc's avatar
gshchepa/uchum@gleb.loc committed
6424 6425
View	Create View	character_set_client	collation_connection
v1	CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `test`.`v1` AS select 1 AS `one`,`f1`() AS `days`	latin1	latin1_swedish_ci
6426 6427 6428 6429 6430 6431 6432
select column_name from information_schema.columns
where table_name='v1' and table_schema='test';
column_name
one
days
drop view v1;
drop function f1;
malff/marcsql@weblab.(none)'s avatar
malff/marcsql@weblab.(none) committed
6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484

# Bug#13675.

DROP PROCEDURE IF EXISTS p1;
DROP PROCEDURE IF EXISTS p2;
DROP TABLE IF EXISTS t1;

CREATE PROCEDURE p1(v DATETIME) CREATE TABLE t1 SELECT v;
CREATE PROCEDURE p2(v INT) CREATE TABLE t1 SELECT v;

CALL p1(NOW());
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `v` datetime DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1

DROP TABLE t1;

CALL p1('text');
Warnings:
Warning	1264	Out of range value for column 'v' at row 1
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `v` datetime DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1

DROP TABLE t1;

CALL p2(10);
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `v` bigint(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1

DROP TABLE t1;

CALL p2('text');
Warnings:
Warning	1366	Incorrect integer value: 'text' for column 'v' at row 1
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `v` bigint(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1

DROP TABLE t1;

DROP PROCEDURE p1;
DROP PROCEDURE p2;
anozdrin/alik@station's avatar
anozdrin/alik@station committed
6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660

#
# Bug#31035.
#

#
# - Prepare.
#

DROP TABLE IF EXISTS t1;
DROP FUNCTION IF EXISTS f1;
DROP FUNCTION IF EXISTS f2;
DROP FUNCTION IF EXISTS f3;
DROP FUNCTION IF EXISTS f4;

#
# - Create required objects.
#

CREATE TABLE t1(c1 INT);

INSERT INTO t1 VALUES (1), (2), (3);

CREATE FUNCTION f1()
RETURNS INT
NOT DETERMINISTIC
RETURN 1;

CREATE FUNCTION f2(p INT)
RETURNS INT
NOT DETERMINISTIC
RETURN 1;

CREATE FUNCTION f3()
RETURNS INT
DETERMINISTIC
RETURN 1;

CREATE FUNCTION f4(p INT)
RETURNS INT
DETERMINISTIC
RETURN 1;

#
# - Check.
#

SELECT f1() AS a FROM t1 GROUP BY a;
a
1

SELECT f2(@a) AS a FROM t1 GROUP BY a;
a
1

SELECT f3() AS a FROM t1 GROUP BY a;
a
1

SELECT f4(0) AS a FROM t1 GROUP BY a;
a
1

SELECT f4(@a) AS a FROM t1 GROUP BY a;
a
1

#
# - Cleanup.
#

DROP TABLE t1;
DROP FUNCTION f1;
DROP FUNCTION f2;
DROP FUNCTION f3;
DROP FUNCTION f4;

#
# Bug#31191.
#

#
# - Prepare.
#

DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t2;
DROP FUNCTION IF EXISTS f1;

#
# - Create required objects.
#

CREATE TABLE t1 (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
barcode INT(8) UNSIGNED ZEROFILL nOT NULL,
PRIMARY KEY  (id),
UNIQUE KEY barcode (barcode)
);

INSERT INTO t1 (id, barcode) VALUES (1, 12345678);
INSERT INTO t1 (id, barcode) VALUES (2, 12345679);

CREATE TABLE test.t2 (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
barcode BIGINT(11) UNSIGNED ZEROFILL NOT NULL,
PRIMARY KEY  (id)
);

INSERT INTO test.t2 (id, barcode) VALUES (1, 12345106708);
INSERT INTO test.t2 (id, barcode) VALUES (2, 12345106709);

CREATE FUNCTION f1(p INT(8))
RETURNS BIGINT(11) UNSIGNED
READS SQL DATA
RETURN FLOOR(p/1000)*1000000 + 100000 + FLOOR((p MOD 1000)/10)*100 + (p MOD 10);

#
# - Check.
#

SELECT DISTINCT t1.barcode, f1(t1.barcode)
FROM t1
INNER JOIN t2
ON f1(t1.barcode) = t2.barcode
WHERE t1.barcode=12345678;
barcode	f1(t1.barcode)
12345678	12345106708

#
# - Cleanup.
#

DROP TABLE t1;
DROP TABLE t2;
DROP FUNCTION f1;

#
# Bug#31226.
#

#
# - Prepare.
#

DROP TABLE IF EXISTS t1;
DROP FUNCTION IF EXISTS f1;

#
# - Create required objects.
#

CREATE TABLE t1(id INT);

INSERT INTO t1 VALUES (1), (2), (3);

CREATE FUNCTION f1()
RETURNS DATETIME
NOT DETERMINISTIC NO SQL
RETURN NOW();

#
# - Check.
#

SELECT f1() FROM t1 GROUP BY 1;
f1()
<timestamp>

#
# - Cleanup.
#

DROP TABLE t1;
DROP FUNCTION f1;

6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676
DROP PROCEDURE IF EXISTS db28318_a.t1;
DROP PROCEDURE IF EXISTS db28318_b.t2;
DROP DATABASE IF EXISTS db28318_a;
DROP DATABASE IF EXISTS db28318_b;
CREATE DATABASE db28318_a;
CREATE DATABASE db28318_b;
CREATE PROCEDURE db28318_a.t1() SELECT "db28318_a.t1";
CREATE PROCEDURE db28318_b.t2() CALL t1();
use db28318_a;
CALL db28318_b.t2();
ERROR 42000: PROCEDURE db28318_b.t1 does not exist
DROP PROCEDURE db28318_a.t1;
DROP PROCEDURE db28318_b.t2;
DROP DATABASE db28318_a;
DROP DATABASE db28318_b;
use test;
anozdrin/alik@ibm's avatar
anozdrin/alik@ibm committed
6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691
DROP TABLE IF EXISTS t1;
DROP PROCEDURE IF EXISTS bug29770;
CREATE TABLE t1(a int);
CREATE PROCEDURE bug29770()
BEGIN
DECLARE CONTINUE HANDLER FOR SQLSTATE '42S22' SET @state:= 'run';
DECLARE CONTINUE HANDLER FOR SQLEXCEPTION SET @exception:= 'run';
SELECT x FROM t1;
END|
CALL bug29770();
SELECT @state, @exception;
@state	@exception
run	NULL
DROP TABLE t1;
DROP PROCEDURE bug29770;
6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726
use test;
drop table if exists t_33618;
drop procedure if exists proc_33618;
create table t_33618 (`a` int, unique(`a`), `b` varchar(30)) engine=myisam;
insert into t_33618 (`a`,`b`) values (1,'1'),(2,'2');
create procedure proc_33618(num int)
begin
declare count1 int default '0';
declare vb varchar(30);
declare last_row int;
while(num>=1) do
set num=num-1;
begin
declare cur1 cursor for select `a` from t_33618;
declare continue handler for not found set last_row = 1;
set last_row:=0;
open cur1;
rep1:
repeat
begin
declare exit handler for 1062 begin end;
fetch cur1 into vb;
if (last_row = 1) then
leave rep1;
end if;
end;
until last_row=1
end repeat;
close cur1;
end;
end while;
end//
call proc_33618(20);
drop table t_33618;
drop procedure proc_33618;
6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743
#
# Bug#30787: Stored function ignores user defined alias.
#
use test;
drop function if exists func30787;
create table t1(f1 int);
insert into t1 values(1),(2);
create function func30787(p1 int) returns int
begin
return p1;
end |
select (select func30787(f1)) as ttt from t1;
ttt
1
2
drop function func30787;
drop table t1;
6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761
CREATE TABLE t1 (id INT);
INSERT INTO t1 VALUES (1),(2),(3),(4);
CREATE PROCEDURE test_sp()
SELECT t1.* FROM t1 RIGHT JOIN t1 t2 ON t1.id=t2.id;
CALL test_sp();
id
1
2
3
4
CALL test_sp();
id
1
2
3
4
DROP PROCEDURE test_sp;
DROP TABLE t1;
6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777
create table t1(c1 INT);
create function f1(p1 int) returns varchar(32)
return 'aaa';
create view v1 as select f1(c1) as parent_control_name from t1;
create procedure p1()
begin
select parent_control_name as c1 from v1;
end //
call p1();
c1
call p1();
c1
drop procedure p1;
drop function f1;
drop view v1;
drop table t1;
6778 6779 6780 6781 6782 6783 6784 6785 6786 6787
drop procedure if exists `p2` $
create procedure `p2`(in `a` text charset utf8)
begin
declare `pos` int default 1;
declare `str` text charset utf8;
set `str` := `a`;
select substr(`str`, `pos`+ 1 ) into `str`;
end $
call `p2`('s s s s s s');
drop procedure `p2`;
6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800
drop table if exists t1;
drop procedure if exists p1;
create procedure p1() begin select * from t1; end$
call p1$
ERROR 42S02: Table 'test.t1' doesn't exist
create table t1 (a integer)$
call p1$
a
alter table t1 add b integer;
call p1$
a
drop table t1;
drop procedure p1;
anozdrin/alik@ibm's avatar
anozdrin/alik@ibm committed
6801 6802 6803
# ------------------------------------------------------------------
# -- End of 5.0 tests
# ------------------------------------------------------------------
6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850

#
# Bug#20550.
#

#
# - Prepare.
#

DROP VIEW IF EXISTS v1;
DROP VIEW IF EXISTS v2;
DROP FUNCTION IF EXISTS f1;
DROP FUNCTION IF EXISTS f2;

#
# - Create required objects.
#

CREATE FUNCTION f1() RETURNS VARCHAR(65525) RETURN 'Hello';

CREATE FUNCTION f2() RETURNS TINYINT RETURN 1;

CREATE VIEW v1 AS SELECT f1();

CREATE VIEW v2 AS SELECT f2();

#
# - Check.
#

SELECT DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'v1';
DATA_TYPE
varchar

SELECT DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'v2';
DATA_TYPE
tinyint

#
# - Cleanup.
#

DROP FUNCTION f1;
DROP FUNCTION f2;
DROP VIEW v1;
DROP VIEW v2;

6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901
#
# - Bug#24923: prepare.
#

DROP FUNCTION IF EXISTS f1;

#
# - Bug#24923: create required objects.
#

CREATE FUNCTION f1(p INT)
RETURNS ENUM ('Very_long_enum_element_identifier',
'Another_very_long_enum_element_identifier')
BEGIN
CASE p
WHEN 1 THEN
RETURN 'Very_long_enum_element_identifier';
ELSE
RETURN 'Another_very_long_enum_element_identifier';
END CASE;
END|

#
# - Bug#24923: check.
#

SELECT f1(1);
f1(1)
Very_long_enum_element_identifier

SELECT f1(2);
f1(2)
Another_very_long_enum_element_identifier

SHOW CREATE FUNCTION f1;
Function	sql_mode	Create Function	character_set_client	collation_connection	Database Collation
f1		CREATE DEFINER=`root`@`localhost` FUNCTION `f1`(p INT) RETURNS enum('Very_long_enum_element_identifier','Another_very_long_enum_element_identifier') CHARSET latin1
BEGIN
CASE p
WHEN 1 THEN
RETURN 'Very_long_enum_element_identifier';
ELSE
RETURN 'Another_very_long_enum_element_identifier';
END CASE;
END	latin1	latin1_swedish_ci	latin1_swedish_ci
#
# - Bug#24923: cleanup.
#

DROP FUNCTION f1;

6902 6903
drop procedure if exists p;
set @old_mode= @@sql_mode;
6904
set @@sql_mode= cast(pow(2,32)-1 as unsigned integer);
6905 6906 6907 6908
select @@sql_mode into @full_mode;
create procedure p() begin end;
call p();
set @@sql_mode= @old_mode;
6909
select replace(@full_mode, ',,,', ',NOT_USED,') into @full_mode;
6910 6911 6912 6913 6914
select replace(@full_mode, 'ALLOW_INVALID_DATES', 'INVALID_DATES') into @full_mode;
select name from mysql.proc where name = 'p' and sql_mode = @full_mode;
name
p
drop procedure p;
6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929
CREATE DEFINER = 'root'@'localhost' PROCEDURE p1()
NOT DETERMINISTIC
CONTAINS SQL
SQL SECURITY DEFINER
COMMENT ''
BEGIN
SHOW TABLE STATUS like 't1';
END;//
CREATE TABLE t1 (f1 INT);
CALL p1();
CALL p1();
CALL p1();
CALL p1();
DROP PROCEDURE p1;
DROP TABLE t1;
6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945
CREATE TABLE t1 ( f1 integer, primary key (f1));
CREATE TABLE t2 LIKE t1;
CREATE TEMPORARY TABLE t3 LIKE t1;
CREATE PROCEDURE p1 () BEGIN SELECT f1 FROM t3 AS A WHERE A.f1 IN ( SELECT f1 FROM t3 ) ;
END|
CALL p1;
ERROR HY000: Can't reopen table: 'A'
CREATE VIEW t3 AS SELECT f1 FROM t2 A WHERE A.f1 IN ( SELECT f1 FROM t2 );
DROP TABLE t3;
CALL p1;
f1
CALL p1;
f1
DROP PROCEDURE p1;
DROP TABLE t1, t2;
DROP VIEW t3;
6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961
#
# Bug #46629: Item_in_subselect::val_int(): Assertion `0' 
# on subquery inside a SP
#
CREATE TABLE t1(a INT);
CREATE TABLE t2(a INT, b INT PRIMARY KEY);
CREATE PROCEDURE p1 () 
BEGIN 
SELECT a FROM t1 A WHERE A.b IN (SELECT b FROM t2 AS B);
END|
CALL p1;
ERROR 42S22: Unknown column 'A.b' in 'IN/ALL/ANY subquery'
CALL p1;
ERROR 42S22: Unknown column 'A.b' in 'IN/ALL/ANY subquery'
DROP PROCEDURE p1;
DROP TABLE t1, t2;
6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019
#
# Bug#47627: SET @@{global.session}.local_variable in stored routine causes crash
# Bug#48626: Crash or lost connection using SET for declared variables with @@
#
DROP PROCEDURE IF EXISTS p1;
DROP PROCEDURE IF EXISTS p2;
DROP PROCEDURE IF EXISTS p3;
CREATE PROCEDURE p1()
BEGIN
DECLARE v INT DEFAULT 0;
SET @@SESSION.v= 10;
END//
ERROR HY000: Unknown system variable 'v'
CREATE PROCEDURE p2()
BEGIN
DECLARE v INT DEFAULT 0;
SET v= 10;
END//
call p2()//
CREATE PROCEDURE p3()
BEGIN
DECLARE v INT DEFAULT 0;
SELECT @@SESSION.v;
END//
ERROR HY000: Unknown system variable 'v'
CREATE PROCEDURE p4()
BEGIN
DECLARE v INT DEFAULT 0;
SET @@GLOBAL.v= 10;
END//
ERROR HY000: Unknown system variable 'v'
CREATE PROCEDURE p5()
BEGIN
DECLARE init_connect INT DEFAULT 0;
SET init_connect= 10;
SET @@GLOBAL.init_connect= 'SELECT 1';
SET @@SESSION.IDENTITY= 1;
SELECT @@SESSION.IDENTITY;
SELECT @@GLOBAL.init_connect;
SELECT init_connect;
END//
CREATE PROCEDURE p6()
BEGIN
DECLARE v INT DEFAULT 0;
SET @@v= 0;
END//
ERROR HY000: Unknown system variable 'v'
SET @old_init_connect= @@GLOBAL.init_connect;
CALL p5();
@@SESSION.IDENTITY
1
@@GLOBAL.init_connect
SELECT 1
init_connect
10
SET @@GLOBAL.init_connect= @old_init_connect;
DROP PROCEDURE p2;
DROP PROCEDURE p5;
anozdrin/alik@ibm's avatar
anozdrin/alik@ibm committed
7020 7021 7022
# ------------------------------------------------------------------
# -- End of 5.1 tests
# ------------------------------------------------------------------
7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037
DROP FUNCTION IF EXISTS f1;
DROP TABLE IF EXISTS t_non_existing;
DROP TABLE IF EXISTS t1;
CREATE FUNCTION f1() RETURNS INT
BEGIN
DECLARE v INT;
SELECT a INTO v FROM t_non_existing;
RETURN 1;
END|
CREATE TABLE t1 (a INT) ENGINE = myisam;
INSERT INTO t1 VALUES (1);
SELECT * FROM t1 WHERE a = f1();
ERROR 42S02: Table 'test.t_non_existing' doesn't exist
DROP FUNCTION f1;
DROP TABLE t1;
7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132
DROP PROCEDURE IF EXISTS p1;
CREATE PROCEDURE p1(a INT, b CHAR)
BEGIN
IF a > 0 THEN
CALL p1(a-1, 'ab');
ELSE
SELECT 1;
END IF;
END|
SET @save_max_sp_recursion= @@max_sp_recursion_depth;
SET @@max_sp_recursion_depth= 5;
CALL p1(4, 'a');
1
1
Warnings:
Warning	1265	Data truncated for column 'b' at row 1
Warning	1265	Data truncated for column 'b' at row 1
Warning	1265	Data truncated for column 'b' at row 1
Warning	1265	Data truncated for column 'b' at row 1
SET @@max_sp_recursion_depth= @save_max_sp_recursion;
DROP PROCEDURE p1;
DROP PROCEDURE IF EXISTS p1;
CREATE PROCEDURE p1(a CHAR)
BEGIN
SELECT 1;
SELECT CAST('10 ' as UNSIGNED INTEGER);
SELECT 1;
END|
CALL p1('data truncated parameter');
1
1
CAST('10 ' as UNSIGNED INTEGER)
10
1
1
Warnings:
Warning	1265	Data truncated for column 'a' at row 1
Warning	1292	Truncated incorrect INTEGER value: '10 '
DROP PROCEDURE p1;
DROP PROCEDURE IF EXISTS p1;
DROP PROCEDURE IF EXISTS p2;
DROP PROCEDURE IF EXISTS p3;
DROP PROCEDURE IF EXISTS p4;
CREATE PROCEDURE p1()
CALL p2()|
CREATE PROCEDURE p2()
CALL p3()|
CREATE PROCEDURE p3()
CALL p4()|
CREATE PROCEDURE p4()
BEGIN
SELECT 1;
SELECT CAST('10 ' as UNSIGNED INTEGER);
SELECT 2;
END|
CALL p1();
1
1
CAST('10 ' as UNSIGNED INTEGER)
10
2
2
Warnings:
Warning	1292	Truncated incorrect INTEGER value: '10 '
DROP PROCEDURE p1;
DROP PROCEDURE p2;
DROP PROCEDURE p3;
DROP PROCEDURE p4;
DROP FUNCTION IF EXISTS f1;
DROP FUNCTION IF EXISTS f2;
DROP FUNCTION IF EXISTS f3;
DROP FUNCTION IF EXISTS f4;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (a CHAR(2));
INSERT INTO t1 VALUES ('aa');
CREATE FUNCTION f1() RETURNS CHAR
RETURN (SELECT f2())|
CREATE FUNCTION f2() RETURNS CHAR
RETURN (SELECT f3())|
CREATE FUNCTION f3() RETURNS CHAR
RETURN (SELECT f4())|
CREATE FUNCTION f4() RETURNS CHAR
BEGIN
RETURN (SELECT a FROM t1);
END|
SELECT f1();
f1()
a
Warnings:
Warning	1265	Data truncated for column 'f4()' at row 1
DROP FUNCTION f1;
DROP FUNCTION f2;
DROP FUNCTION f3;
DROP FUNCTION f4;
DROP TABLE t1;
7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149
#
# Bug#34197: CREATE PROCEDURE fails when COMMENT truncated in non 
#            strict SQL mode
#
DROP PROCEDURE IF EXISTS p1;
CREATE PROCEDURE p1 ()
COMMENT
'12345678901234567890123456789012345678901234567890123456789012345678901234567890'
BEGIN
END;
SELECT comment FROM mysql.proc WHERE name = "p1";
comment
12345678901234567890123456789012345678901234567890123456789012345678901234567890
SELECT routine_comment FROM information_schema.routines WHERE routine_name = "p1";
routine_comment
12345678901234567890123456789012345678901234567890123456789012345678901234567890
DROP PROCEDURE p1;
Jon Olav Hauglid's avatar
Jon Olav Hauglid committed
7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208
#
# Bug #47313 assert in check_key_in_view during CALL procedure
#
DROP TABLE IF EXISTS t1;
DROP VIEW IF EXISTS t1, t2_unrelated;
DROP PROCEDURE IF EXISTS p1;
CREATE PROCEDURE p1(IN x INT) INSERT INTO t1 VALUES (x);
CREATE VIEW t1 AS SELECT 10 AS f1;
# t1 refers to the view
CALL p1(1);
ERROR HY000: The target table t1 of the INSERT is not insertable-into
CREATE TEMPORARY TABLE t1 (f1 INT);
# t1 still refers to the view since it was inlined
CALL p1(2);
ERROR HY000: The target table t1 of the INSERT is not insertable-into
DROP VIEW t1;
# t1 now refers to the temporary table
CALL p1(3);
# Check which values were inserted into the temp table.
SELECT * FROM t1;
f1
3
DROP TEMPORARY TABLE t1;
DROP PROCEDURE p1;
# Now test what happens if the sp cache is invalidated.
CREATE PROCEDURE p1(IN x INT) INSERT INTO t1 VALUES (x);
CREATE VIEW t1 AS SELECT 10 AS f1;
CREATE VIEW v2_unrelated AS SELECT 1 AS r1;
# Load the procedure into the sp cache
CALL p1(4);
ERROR HY000: The target table t1 of the INSERT is not insertable-into
CREATE TEMPORARY TABLE t1 (f1 int);
ALTER VIEW v2_unrelated AS SELECT 2 AS r1;
# Alter view causes the sp cache to be invalidated.
# Now t1 refers to the temporary table, not the view.
CALL p1(5);
# Check which values were inserted into the temp table.
SELECT * FROM t1;
f1
5
DROP TEMPORARY TABLE t1;
DROP VIEW t1, v2_unrelated;
DROP PROCEDURE p1;
CREATE PROCEDURE p1(IN x INT) INSERT INTO t1 VALUES (x);
CREATE TEMPORARY TABLE t1 (f1 INT);
# t1 refers to the temporary table
CALL p1(6);
CREATE VIEW t1 AS SELECT 10 AS f1;
# Create view causes the sp cache to be invalidated.
# t1 still refers to the temporary table since it shadows the view.
CALL p1(7);
DROP VIEW t1;
# Check which values were inserted into the temp table.
SELECT * FROM t1;
f1
6
7
DROP TEMPORARY TABLE t1;
DROP PROCEDURE p1;