sp.result 54.7 KB
Newer Older
unknown's avatar
unknown committed
1
use test;
2
drop table if exists t1;
unknown's avatar
unknown committed
3 4 5 6
create table t1 (
id   char(16) not null,
data int not null
);
7
drop table if exists t2;
8
create table t2 (
9 10 11
s   char(16),
i   int,
d   double
12
);
13
drop procedure if exists foo42;
unknown's avatar
unknown committed
14 15
create procedure foo42()
insert into test.t1 values ("foo", 42);
16 17 18 19 20 21
call foo42();
select * from t1;
id	data
foo	42
delete from t1;
drop procedure foo42;
22
drop procedure if exists bar;
unknown's avatar
unknown committed
23 24
create procedure bar(x char(16), y int)
insert into test.t1 values (x, y);
25 26 27 28 29
call bar("bar", 666);
select * from t1;
id	data
bar	666
delete from t1;
30
drop procedure if exists empty|
unknown's avatar
unknown committed
31 32
create procedure empty()
begin
unknown's avatar
unknown committed
33 34 35
end|
call empty()|
drop procedure empty|
36
drop procedure if exists scope|
unknown's avatar
unknown committed
37 38 39 40 41 42 43
create procedure scope(a int, b float)
begin
declare b int;
declare c float;
begin
declare c int;
end;
unknown's avatar
unknown committed
44 45
end|
drop procedure scope|
46
drop procedure if exists two|
unknown's avatar
unknown committed
47 48 49 50
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);
unknown's avatar
unknown committed
51 52 53
end|
call two("one", "two", 3)|
select * from t1|
54 55 56
id	data
one	3
two	3
unknown's avatar
unknown committed
57 58
delete from t1|
drop procedure two|
59
drop procedure if exists locset|
unknown's avatar
unknown committed
60 61 62 63 64 65
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);
unknown's avatar
unknown committed
66 67 68
end|
call locset("locset", 19)|
select * from t1|
69 70
id	data
locset	21
unknown's avatar
unknown committed
71 72
delete from t1|
drop procedure locset|
73
drop procedure if exists setcontext|
74 75 76 77 78 79 80 81 82 83 84 85 86 87
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()|
select * from t1|
id	data
foo	1
kaka	3
delete from t1|
drop procedure setcontext|
88
drop table if exists t3|
unknown's avatar
unknown committed
89
create table t3 ( d date, i int, f double, s varchar(32) )|
90
drop procedure if exists nullset|
91 92 93 94 95 96 97 98
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);
99 100 101 102 103 104
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");
unknown's avatar
unknown committed
105 106 107
end|
call nullset()|
select * from t3|
108 109
d	i	f	s
NULL	NULL	NULL	NULL
110 111 112 113 114 115
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
unknown's avatar
unknown committed
116 117
drop table t3|
drop procedure nullset|
118
drop procedure if exists mixset|
unknown's avatar
unknown committed
119 120 121 122 123
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);
unknown's avatar
unknown committed
124 125 126
end|
call mixset("mixset", 19)|
show variables like 'max_join_size'|
127 128
Variable_name	Value
max_join_size	100
unknown's avatar
unknown committed
129
select id,data,@z from t1|
130 131
id	data	@z
mixset	666	19
unknown's avatar
unknown committed
132 133
delete from t1|
drop procedure mixset|
134
drop procedure if exists zip|
unknown's avatar
unknown committed
135 136 137 138 139
create procedure zip(x char(16), y int)
begin
declare z int;
call zap(y, z);
call bar(x, z);
unknown's avatar
unknown committed
140
end|
141
drop procedure if exists zap|
unknown's avatar
unknown committed
142 143 144 145
create procedure zap(x int, out y int)
begin
declare z int;
set z = x+1, y = z;
unknown's avatar
unknown committed
146 147 148
end|
call zip("zip", 99)|
select * from t1|
149 150
id	data
zip	100
unknown's avatar
unknown committed
151 152 153 154 155
delete from t1|
drop procedure zip|
drop procedure bar|
call zap(7, @zap)|
select @zap|
156 157
@zap
8
unknown's avatar
unknown committed
158
drop procedure zap|
159
drop procedure if exists c1|
160
create procedure c1(x int)
unknown's avatar
unknown committed
161
call c2("c", x)|
162
drop procedure if exists c2|
163
create procedure c2(s char(16), x int)
unknown's avatar
unknown committed
164
call c3(x, s)|
165
drop procedure if exists c3|
166
create procedure c3(x int, s char(16))
unknown's avatar
unknown committed
167
call c4("level", x, s)|
168
drop procedure if exists c4|
169
create procedure c4(l char(8), x int, s char(16))
unknown's avatar
unknown committed
170 171 172
insert into t1 values (concat(l,s), x)|
call c1(42)|
select * from t1|
173 174
id	data
levelc	42
unknown's avatar
unknown committed
175 176 177 178 179
delete from t1|
drop procedure c1|
drop procedure c2|
drop procedure c3|
drop procedure c4|
180
drop procedure if exists iotest|
unknown's avatar
unknown committed
181 182 183 184
create procedure iotest(x1 char(16), x2 char(16), y int)
begin
call inc2(x2, y);
insert into test.t1 values (x1, y);
unknown's avatar
unknown committed
185
end|
186
drop procedure if exists inc2|
unknown's avatar
unknown committed
187 188 189 190
create procedure inc2(x char(16), y int)
begin
call inc(y);
insert into test.t1 values (x, y);
unknown's avatar
unknown committed
191
end|
192
drop procedure if exists inc|
unknown's avatar
unknown committed
193
create procedure inc(inout io int)
unknown's avatar
unknown committed
194 195 196
set io = io + 1|
call iotest("io1", "io2", 1)|
select * from t1|
197 198 199
id	data
io2	2
io1	1
unknown's avatar
unknown committed
200 201 202
delete from t1|
drop procedure iotest|
drop procedure inc2|
203
drop procedure if exists incr|
204
create procedure incr(inout x int)
unknown's avatar
unknown committed
205 206
call inc(x)|
select @zap|
207 208
@zap
8
unknown's avatar
unknown committed
209 210
call incr(@zap)|
select @zap|
211 212
@zap
9
unknown's avatar
unknown committed
213 214
drop procedure inc|
drop procedure incr|
215
drop procedure if exists cbv1|
unknown's avatar
unknown committed
216 217
create procedure cbv1()
begin
218
declare y int default 3;
unknown's avatar
unknown committed
219 220
call cbv2(y+1, y);
insert into test.t1 values ("cbv1", y);
unknown's avatar
unknown committed
221
end|
222
drop procedure if exists cbv2|
unknown's avatar
unknown committed
223 224 225 226
create procedure cbv2(y1 int, inout y2 int)
begin
set y2 = 4711;
insert into test.t1 values ("cbv2", y1);
unknown's avatar
unknown committed
227 228 229
end|
call cbv1()|
select * from t1|
230 231 232
id	data
cbv2	4
cbv1	4711
unknown's avatar
unknown committed
233 234 235 236
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)|
237
drop procedure if exists sub1|
unknown's avatar
unknown committed
238
create procedure sub1(id char(16), x int)
unknown's avatar
unknown committed
239
insert into test.t1 values (id, x)|
240
drop procedure if exists sub3|
unknown's avatar
unknown committed
241
create function sub3(i int) returns int
unknown's avatar
unknown committed
242 243 244 245 246 247
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))|
call sub1("sub1d", (select 1 from (select 1) a))|
select * from t1|
unknown's avatar
unknown committed
248 249 250 251 252
id	data
sub1a	7
sub1b	3
sub1c	1
sub1d	1
unknown's avatar
unknown committed
253
select sub3((select max(i) from t2))|
unknown's avatar
unknown committed
254 255
sub3((select max(i) from t2))
4
unknown's avatar
unknown committed
256 257 258
drop procedure sub1|
drop function sub3|
delete from t2|
259
drop procedure if exists a0|
unknown's avatar
unknown committed
260 261 262 263
create procedure a0(x int)
while x do
set x = x-1;
insert into test.t1 values ("a0", x);
unknown's avatar
unknown committed
264 265 266
end while|
call a0(3)|
select * from t1|
267
id	data
unknown's avatar
unknown committed
268 269 270 271
sub1a	7
sub1b	3
sub1c	1
sub1d	1
272 273 274
a0	2
a0	1
a0	0
unknown's avatar
unknown committed
275 276
delete from t1|
drop procedure a0|
277
drop procedure if exists a|
unknown's avatar
unknown committed
278 279 280 281
create procedure a(x int)
while x > 0 do
set x = x-1;
insert into test.t1 values ("a", x);
unknown's avatar
unknown committed
282 283 284
end while|
call a(3)|
select * from t1|
285 286 287 288
id	data
a	2
a	1
a	0
unknown's avatar
unknown committed
289 290
delete from t1|
drop procedure a|
291
drop procedure if exists b|
unknown's avatar
unknown committed
292
create procedure b(x int)
293 294
repeat
insert into test.t1 values (repeat("b",3), x);
unknown's avatar
unknown committed
295
set x = x-1;
unknown's avatar
unknown committed
296 297 298
until x = 0 end repeat|
call b(3)|
select * from t1|
299 300 301 302
id	data
bbb	3
bbb	2
bbb	1
unknown's avatar
unknown committed
303 304
delete from t1|
drop procedure b|
305
drop procedure if exists b2|
306 307 308 309
create procedure b2(x int)
repeat(select 1 into outfile 'b2');
insert into test.t1 values (repeat("b2",3), x);
set x = x-1;
unknown's avatar
unknown committed
310 311
until x = 0 end repeat|
drop procedure b2|
312
drop procedure if exists c|
unknown's avatar
unknown committed
313 314 315 316 317 318
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);
unknown's avatar
unknown committed
319 320 321
end while hmm|
call c(3)|
select * from t1|
322 323 324 325
id	data
c	3
c	2
c	1
unknown's avatar
unknown committed
326 327
delete from t1|
drop procedure c|
328
drop procedure if exists d|
unknown's avatar
unknown committed
329 330 331 332 333 334
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);
unknown's avatar
unknown committed
335 336 337
end while|
call d(3)|
select * from t1|
338 339
id	data
d	3
unknown's avatar
unknown committed
340 341
delete from t1|
drop procedure d|
342
drop procedure if exists e|
unknown's avatar
unknown committed
343 344 345 346 347 348 349
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;
unknown's avatar
unknown committed
350 351 352
end loop foo|
call e(3)|
select * from t1|
353 354 355 356
id	data
e	3
e	2
e	1
unknown's avatar
unknown committed
357 358
delete from t1|
drop procedure e|
359
drop procedure if exists f|
unknown's avatar
unknown committed
360 361 362 363 364 365 366
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);
unknown's avatar
unknown committed
367 368 369 370 371
end if|
call f(-2)|
call f(0)|
call f(4)|
select * from t1|
unknown's avatar
unknown committed
372 373 374 375
id	data
f	0
f	1
f	2
unknown's avatar
unknown committed
376 377
delete from t1|
drop procedure f|
378
drop procedure if exists g|
379 380 381 382 383 384 385 386
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);
unknown's avatar
unknown committed
387 388 389 390 391
end case|
call g(-42)|
call g(0)|
call g(1)|
select * from t1|
unknown's avatar
unknown committed
392 393 394 395
id	data
g	0
g	1
g	2
unknown's avatar
unknown committed
396 397
delete from t1|
drop procedure g|
398
drop procedure if exists h|
399 400 401 402 403 404 405 406
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);
unknown's avatar
unknown committed
407 408 409 410 411
end case|
call h(0)|
call h(1)|
call h(17)|
select * from t1|
unknown's avatar
unknown committed
412 413 414 415
id	data
h0	0
h1	1
h?	17
unknown's avatar
unknown committed
416 417
delete from t1|
drop procedure h|
418
drop procedure if exists i|
unknown's avatar
unknown committed
419 420 421 422 423 424 425
create procedure i(x int)
foo:
begin
if x = 0 then
leave foo;
end if;
insert into test.t1 values ("i", x);
unknown's avatar
unknown committed
426 427 428 429
end foo|
call i(0)|
call i(3)|
select * from t1|
unknown's avatar
unknown committed
430 431
id	data
i	3
unknown's avatar
unknown committed
432 433
delete from t1|
drop procedure i|
434
drop procedure if exists goto1|
435
create procedure goto1()
436 437 438 439 440 441 442 443 444 445 446 447
begin
declare y int;
label a;
select * from t1;
select count(*) into y from t1;
if y > 2 then
goto b;
end if;
insert into t1 values ("j", y);
goto a;
label b;
end|
448
call goto1()|
449 450 451 452 453 454 455 456 457 458
id	data
id	data
j	0
id	data
j	0
j	1
id	data
j	0
j	1
j	2
459
drop procedure goto1|
460
drop procedure if exists goto2|
461
create procedure goto2(a int)
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
begin
declare x int default 0;
declare continue handler for sqlstate '42S98' set x = 1;
label a;
select * from t1;
b:
while x < 2 do
begin
declare continue handler for sqlstate '42S99' set x = 2;
if a = 0 then
set x = x + 1;
iterate b;
elseif a = 1 then
leave b;
elseif a = 2 then
set a = 1;
goto a;
end if;
end;
end while b;
select * from t1;
end|
484
call goto2(0)|
485 486 487 488 489 490 491 492
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
493
call goto2(1)|
494 495 496 497 498 499 500 501
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
502
call goto2(2)|
503 504 505 506 507 508 509 510 511 512 513 514
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
515
drop procedure goto2|
516
delete from t1|
517
drop procedure if exists goto3|
518 519 520 521 522 523 524 525
create procedure goto3()
begin
label L1;
begin
end;
goto L1;
end|
drop procedure goto3|
526
drop procedure if exists goto4|
527 528 529 530 531 532 533 534 535 536
create procedure goto4()
begin
begin
label lab1;
begin
goto lab1;
end;
end;
end|
drop procedure goto4|
537
drop procedure if exists goto5|
538 539 540 541 542 543 544 545 546 547
create procedure goto5()
begin
begin
begin
goto lab1;
end;
label lab1;
end;
end|
drop procedure goto5|
548
drop procedure if exists goto6|
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
create procedure goto6()
begin
label L1;
goto L5;
begin
label L2;
goto L1;
goto L5;
begin
label L3;
goto L1;
goto L2;
goto L3;
goto L4;
goto L5;
end;
goto L2;
goto L4;
label L4;
end;
label L5;
goto L1;
end|
drop procedure goto6|
unknown's avatar
unknown committed
573 574
insert into t1 values ("foo", 3), ("bar", 19)|
insert into t2 values ("x", 9, 4.1), ("y", -1, 19.2), ("z", 3, 2.2)|
575
drop procedure if exists sel1|
unknown's avatar
unknown committed
576 577 578 579 580 581 582 583 584
create procedure sel1()
begin
select * from t1;
end|
call sel1()|
id	data
foo	3
bar	19
drop procedure sel1|
585
drop procedure if exists sel2|
unknown's avatar
unknown committed
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
create procedure sel2()
begin
select * from t1;
select * from t2;
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|
602
drop procedure if exists into_test|
603 604 605 606 607
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);
unknown's avatar
unknown committed
608 609 610
end|
call into_test("into", 100)|
select * from t1|
unknown's avatar
unknown committed
611
id	data
unknown's avatar
unknown committed
612 613
into	100
into2	102
unknown's avatar
unknown committed
614 615
delete from t1|
drop procedure into_test|
616
drop procedure if exists into_tes2|
617 618 619 620 621
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);
unknown's avatar
unknown committed
622 623 624
end|
call into_test2("into", 100)|
select id,data,@z from t1|
unknown's avatar
unknown committed
625 626 627
id	data	@z
into	100	100
into2	102	100
unknown's avatar
unknown committed
628 629
delete from t1|
drop procedure into_test2|
630
drop procedure if exists into_test3|
631 632 633 634 635 636
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);
unknown's avatar
unknown committed
637 638 639 640 641
end|
insert into t1 values ("into3", 19)|
call into_test3()|
call into_test3()|
select * from t2|
642 643 644
s	i	d
into3	19	0
into3	19	0
unknown's avatar
unknown committed
645 646 647
delete from t1|
delete from t2|
drop procedure into_test3|
648
drop procedure if exists into_test4|
649 650 651 652 653
create procedure into_test4()
begin
declare x int;
select data into x from test.t1 limit 1;
insert into test.t3 values ("into4", x);
unknown's avatar
unknown committed
654 655 656 657 658
end|
delete from t1|
drop table if exists t3|
create table t3 ( s char(16), d int)|
call into_test4()|
659
Warnings:
unknown's avatar
unknown committed
660
select * from t3|
661 662
s	d
into4	NULL
unknown's avatar
unknown committed
663 664 665
insert into t1 values ("i4", 77)|
call into_test4()|
select * from t3|
666 667 668
s	d
into4	NULL
into4	77
unknown's avatar
unknown committed
669 670 671
delete from t1|
drop table t3|
drop procedure into_test4|
672
drop procedure if exists into_outfile|
673 674 675 676 677
create procedure into_outfile(x char(16), y int)
begin
insert into test.t1 values (x, y);
select * into outfile "/tmp/spout" from test.t1;
insert into test.t1 values (concat(x, "2"), y+2);
unknown's avatar
unknown committed
678 679 680 681
end|
call into_outfile("ofile", 1)|
delete from t1|
drop procedure into_outfile|
682
drop procedure if exists into_dumpfile|
683 684 685 686 687
create procedure into_dumpfile(x char(16), y int)
begin
insert into test.t1 values (x, y);
select * into dumpfile "/tmp/spdump" from test.t1 limit 1;
insert into test.t1 values (concat(x, "2"), y+2);
unknown's avatar
unknown committed
688 689 690 691
end|
call into_dumpfile("dfile", 1)|
delete from t1|
drop procedure into_dumpfile|
692
drop procedure if exists create_select|
693 694 695
create procedure create_select(x char(16), y int)
begin
insert into test.t1 values (x, y);
696
create temporary table test.t3 select * from test.t1;
unknown's avatar
unknown committed
697
insert into test.t3 values (concat(x, "2"), y+2);
unknown's avatar
unknown committed
698 699 700 701
end|
drop table if exists t3|
call create_select("cs", 90)|
select * from t1, t3|
unknown's avatar
unknown committed
702 703 704
id	data	id	data
cs	90	cs	90
cs	90	cs2	92
unknown's avatar
unknown committed
705 706 707
drop table if exists t3|
delete from t1|
drop procedure create_select|
708
drop function if exists e|
709
create function e() returns double
unknown's avatar
unknown committed
710 711 712
return 2.7182818284590452354|
set @e = e()|
select e(), @e|
713 714
e()	@e
2.718281828459	2.718281828459
715
drop function if exists inc|
716
create function inc(i int) returns int
unknown's avatar
unknown committed
717 718
return i+1|
select inc(1), inc(99), inc(-71)|
719 720
inc(1)	inc(99)	inc(-71)
2	100	-70
721
drop function if exists mul|
722
create function mul(x int, y int) returns int
unknown's avatar
unknown committed
723 724
return x*y|
select mul(1,1), mul(3,5), mul(4711, 666)|
725 726
mul(1,1)	mul(3,5)	mul(4711, 666)
1	15	3137526
727
drop function if exists append|
728
create function append(s1 char(8), s2 char(8)) returns char(16)
unknown's avatar
unknown committed
729 730
return concat(s1, s2)|
select append("foo", "bar")|
731 732
append("foo", "bar")
foobar
733
drop function if exists fac|
734 735
create function fac(n int unsigned) returns bigint unsigned
begin
736
declare f bigint unsigned default 1;
737 738 739 740 741
while n > 1 do
set f = f * n;
set n = n - 1;
end while;
return f;
unknown's avatar
unknown committed
742 743
end|
select fac(1), fac(2), fac(5), fac(10)|
744 745
fac(1)	fac(2)	fac(5)	fac(10)
1	2	120	3628800
746
drop function if exists fun|
747
create function fun(d double, i int, u int unsigned) returns double
unknown's avatar
unknown committed
748 749
return mul(inc(i), fac(u)) / e()|
select fun(2.3, 3, 5)|
750 751
fun(2.3, 3, 5)
176.58213176229
unknown's avatar
unknown committed
752 753 754
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")|
755 756
s	i	d
ab	24	1324.36598821719
unknown's avatar
unknown committed
757
select * from t2 where i = mul(4,3) or i = mul(mul(3,4),2)|
758 759 760
s	i	d
xxxyyy	12	2.71828182845905
ab	24	1324.36598821719
unknown's avatar
unknown committed
761
select * from t2 where d = e()|
762 763
s	i	d
xxxyyy	12	2.71828182845905
unknown's avatar
unknown committed
764
select * from t2|
765 766 767
s	i	d
xxxyyy	12	2.71828182845905
ab	24	1324.36598821719
unknown's avatar
unknown committed
768 769 770 771 772 773
delete from t2|
drop function e|
drop function inc|
drop function mul|
drop function append|
drop function fun|
774
drop procedure if exists hndlr1|
775 776 777
create procedure hndlr1(val int)
begin
declare x int default 0;
778
declare foo condition for 1136;
unknown's avatar
unknown committed
779 780
declare bar condition for sqlstate '42S98';        # Just for testing syntax
declare zip condition for sqlstate value '42S99';  # Just for testing syntax
781
declare continue handler for foo set x = 1;
782
insert into test.t1 values ("hndlr1", val, 2);  # Too many values
783 784 785
if (x) then
insert into test.t1 values ("hndlr1", val);   # This instead then
end if;
unknown's avatar
unknown committed
786 787 788
end|
call hndlr1(42)|
select * from t1|
789 790
id	data
hndlr1	42
unknown's avatar
unknown committed
791 792
delete from t1|
drop procedure hndlr1|
793
drop procedure if exists hndlr2|
794 795 796 797
create procedure hndlr2(val int)
begin
declare x int default 0;
begin
798 799
declare exit handler for sqlstate '21S01' set x = 1;
insert into test.t1 values ("hndlr2", val, 2); # Too many values
800 801
end;
insert into test.t1 values ("hndlr2", x);
unknown's avatar
unknown committed
802 803 804
end|
call hndlr2(42)|
select * from t1|
805 806
id	data
hndlr2	1
unknown's avatar
unknown committed
807 808
delete from t1|
drop procedure hndlr2|
809
drop procedure if exists hndlr3|
810 811 812 813 814 815 816 817 818 819 820 821 822
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;
823
insert into test.t1 values ("hndlr3", y, 2);  # Too many values
824 825 826 827 828
if x then
insert into test.t1 values ("hndlr3", y);
end if;
end;
end if;
unknown's avatar
unknown committed
829 830 831
end|
call hndlr3(3)|
select * from t1|
832 833
id	data
hndlr3	13
unknown's avatar
unknown committed
834 835 836 837
delete from t1|
drop procedure hndlr3|
drop table if exists t3|
create table t3 ( id   char(16), data int )|
838
drop procedure if exists hndlr4|
839 840 841 842
create procedure hndlr4()
begin
declare x int default 0;
declare val int;	                           # No default
unknown's avatar
unknown committed
843
declare continue handler for sqlstate '02000' set x=1;
844 845
select data into val from test.t3 where id='z' limit 1;  # No hits
insert into test.t3 values ('z', val);
unknown's avatar
unknown committed
846 847 848
end|
call hndlr4()|
select * from t3|
849
id	data
850
z	NULL
unknown's avatar
unknown committed
851 852
drop table t3|
drop procedure hndlr4|
853
drop procedure if exists cur1|
854 855 856 857 858
create procedure cur1()
begin
declare a char(16);
declare b int;
declare c double;
859 860 861
declare done int default 0;
declare c cursor for select * from test.t2;
declare continue handler for sqlstate '02000' set done = 1;
862 863 864 865 866 867 868 869
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;
unknown's avatar
unknown committed
870 871 872 873
end|
insert into t2 values ("foo", 42, -1.9), ("bar", 3, 12.1), ("zap", 666, -3.14)|
call cur1()|
select * from t1|
874 875 876 877
id	data
foo	40
bar	15
zap	663
unknown's avatar
unknown committed
878 879 880
drop procedure cur1|
drop table if exists t3|
create table t3 ( s char(16), i int )|
881
drop procedure if exists cur2|
882 883 884 885 886
create procedure cur2()
begin
declare done int default 0;
declare c1 cursor for select id,data from test.t1;
declare c2 cursor for select i from test.t2;
887
declare continue handler for sqlstate '02000' set done = 1;
888 889 890 891 892 893
open c1;
open c2;
repeat
begin
declare a char(16);
declare b,c int;
894 895
fetch from c1 into a, b;
fetch next from c2 into c;
896 897 898 899 900 901 902 903 904 905 906
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;
unknown's avatar
unknown committed
907 908 909
end|
call cur2()|
select * from t3|
910 911 912 913
s	i
foo	40
bar	3
zap	663
unknown's avatar
unknown committed
914 915 916 917
delete from t1|
delete from t2|
drop table t3|
drop procedure cur2|
918
drop procedure if exists chistics|
919 920
create procedure chistics()
language sql
921
modifies sql data
922 923 924
not deterministic
sql security definer
comment 'Characteristics procedure test'
925 926 927 928 929 930 931
  insert into t1 values ("chistics", 1)|
show create procedure chistics|
Procedure	sql_mode	Create Procedure
chistics		CREATE PROCEDURE `test`.`chistics`()
    MODIFIES SQL DATA
    COMMENT 'Characteristics procedure test'
insert into t1 values ("chistics", 1)
unknown's avatar
unknown committed
932 933
call chistics()|
select * from t1|
934 935
id	data
chistics	1
unknown's avatar
unknown committed
936
delete from t1|
937 938
alter procedure chistics sql security invoker|
show create procedure chistics|
939
Procedure	sql_mode	Create Procedure
940
chistics		CREATE PROCEDURE `test`.`chistics`()
941
    MODIFIES SQL DATA
942 943 944
    SQL SECURITY INVOKER
    COMMENT 'Characteristics procedure test'
insert into t1 values ("chistics", 1)
945
drop procedure chistics|
946
drop function if exists chistics|
947 948 949 950 951
create function chistics() returns int
language sql
deterministic
sql security invoker
comment 'Characteristics procedure test'
952 953 954 955 956 957 958 959
  return 42|
show create function chistics|
Function	sql_mode	Create Function
chistics		CREATE FUNCTION `test`.`chistics`() RETURNS int
    DETERMINISTIC
    SQL SECURITY INVOKER
    COMMENT 'Characteristics procedure test'
return 42
unknown's avatar
unknown committed
960
select chistics()|
961 962
chistics()
42
963
alter function chistics
964 965
no sql
comment 'Characteristics function test'|
966
show create function chistics|
967
Function	sql_mode	Create Function
968
chistics		CREATE FUNCTION `test`.`chistics`() RETURNS int
969
    NO SQL
970 971 972 973
    DETERMINISTIC
    SQL SECURITY INVOKER
    COMMENT 'Characteristics function test'
return 42
974
drop function chistics|
unknown's avatar
unknown committed
975 976
insert into t1 values ("foo", 1), ("bar", 2), ("zip", 3)|
set @@sql_mode = 'ANSI'|
977
drop procedure if exists modes$
978 979 980 981 982
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;
983
declare continue handler for sqlstate '02000' set done = 1;
984 985 986 987 988 989 990 991 992 993
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;
unknown's avatar
unknown committed
994 995 996 997 998 999
end$
set @@sql_mode = ''|
set sql_select_limit = 1|
call modes(@c1, @c2)|
set sql_select_limit = default|
select @c1, @c2|
1000 1001
@c1	@c2
12	3
unknown's avatar
unknown committed
1002 1003
delete from t1|
drop procedure modes|
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
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|
1014
drop procedure if exists dummy|
1015 1016 1017 1018 1019 1020
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
1021
drop procedure if exists rc|
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
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
1043 1044 1045 1046 1047
select * from t1|
id	data
select row_count()|
row_count()
-1
1048
drop procedure rc|
1049 1050
drop procedure if exists bug822|
create procedure bug822(a_id char(16), a_data int)
1051 1052 1053 1054 1055 1056
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);
end if;
unknown's avatar
unknown committed
1057
end|
1058 1059 1060
call bug822('foo', 42)|
call bug822('foo', 42)|
call bug822('bar', 666)|
unknown's avatar
unknown committed
1061
select * from t1|
1062 1063 1064
id	data
foo	42
bar	666
unknown's avatar
unknown committed
1065
delete from t1|
1066 1067 1068
drop procedure bug822|
drop procedure if exists bug1495|
create procedure bug1495()
1069 1070 1071 1072 1073 1074 1075 1076
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;
unknown's avatar
unknown committed
1077 1078
end|
insert into t1 values ('foo', 12)|
1079
call bug1495()|
unknown's avatar
unknown committed
1080 1081
delete from t1 where id='foo'|
insert into t1 values ('bar', 7)|
1082
call bug1495()|
unknown's avatar
unknown committed
1083 1084
delete from t1 where id='bar'|
select * from t1|
1085 1086 1087
id	data
less	2
more	17
unknown's avatar
unknown committed
1088
delete from t1|
1089 1090 1091
drop procedure bug1495|
drop procedure if exists bug1547|
create procedure bug1547(s char(16))
1092 1093 1094 1095 1096 1097 1098 1099
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;
unknown's avatar
unknown committed
1100 1101
end|
insert into t1 values ("foo", 12), ("bar", 7)|
1102 1103
call bug1547("foo")|
call bug1547("bar")|
unknown's avatar
unknown committed
1104
select * from t1|
1105 1106 1107 1108 1109
id	data
foo	12
bar	7
less	2
more	17
unknown's avatar
unknown committed
1110
delete from t1|
1111
drop procedure bug1547|
unknown's avatar
unknown committed
1112 1113 1114
drop table if exists t70|
create table t70 (s1 int,s2 int)|
insert into t70 values (1,2)|
1115 1116
drop procedure if exists bug1656|
create procedure bug1656(out p1 int, out p2 int)
unknown's avatar
unknown committed
1117
select * into p1, p1 from t70|
1118
call bug1656(@1, @2)|
unknown's avatar
unknown committed
1119
select @1, @2|
1120 1121
@1	@2
2	NULL
unknown's avatar
unknown committed
1122
drop table t70|
1123
drop procedure bug1656|
unknown's avatar
unknown committed
1124 1125
drop table if exists t3|
create table t3(a int)|
1126 1127
drop procedure if exists bug1862|
create procedure bug1862()
1128 1129 1130
begin
insert into t3 values(2);    
flush tables;
unknown's avatar
unknown committed
1131
end|
1132 1133
call bug1862()|
call bug1862()|
unknown's avatar
unknown committed
1134
select * from t3|
1135 1136 1137
a
2
2
unknown's avatar
unknown committed
1138
drop table t3|
1139 1140 1141
drop procedure bug1862|
drop procedure if exists bug1874|
create procedure bug1874()
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
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);
unknown's avatar
unknown committed
1153 1154
end|
insert into t1 (data) values (3), (1), (5), (9), (4)|
1155
call bug1874()|
unknown's avatar
unknown committed
1156
select * from t2|
1157 1158 1159 1160 1161
s	i	d
max	9	0
min	1	0
sum	22	0
avg	0	4.4
unknown's avatar
unknown committed
1162 1163
delete from t1|
delete from t2|
1164 1165 1166
drop procedure bug1874|
drop procedure if exists bug2260|
create procedure bug2260()
1167 1168 1169
begin
declare v1 int;
declare c1 cursor for select data from t1;
1170
declare continue handler for not found set @x2 = 1;
1171 1172 1173 1174 1175
open c1;
fetch c1 into v1;
set @x2 = 2;
close c1;
end|
1176
call bug2260()|
1177 1178 1179
select @x2|
@x2
2
1180 1181
drop procedure bug2260|
drop procedure if exists bug2267_1|
1182 1183 1184 1185
create procedure bug2267_1()
begin
show procedure status;
end|
1186
drop procedure if exists bug2267_2|
1187 1188 1189 1190
create procedure bug2267_2()
begin
show function status;
end|
1191
drop procedure if exists bug2267_3|
1192 1193 1194 1195
create procedure bug2267_3()
begin
show create procedure bug2267_1;
end|
1196
drop procedure if exists bug2267_4|
1197 1198 1199 1200 1201
create procedure bug2267_4()
begin
show create function fac;
end|
call bug2267_1()|
1202 1203 1204 1205 1206
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
test	bug2267_1	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
test	bug2267_2	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
test	bug2267_3	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
test	bug2267_4	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
1207
call bug2267_2()|
1208 1209
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
test	fac	FUNCTION	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
1210
call bug2267_3()|
1211 1212
Procedure	sql_mode	Create Procedure
bug2267_1		CREATE PROCEDURE `test`.`bug2267_1`()
1213 1214 1215 1216
begin
show procedure status;
end
call bug2267_4()|
1217 1218
Function	sql_mode	Create Function
fac		CREATE FUNCTION `test`.`fac`(n int unsigned) RETURNS bigint unsigned
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
begin
declare f bigint unsigned default 1;
while n > 1 do
set f = f * n;
set n = n - 1;
end while;
return f;
end
drop procedure bug2267_1|
drop procedure bug2267_2|
drop procedure bug2267_3|
drop procedure bug2267_4|
1231 1232
drop procedure if exists bug2227|
create procedure bug2227(x int)
1233 1234 1235 1236 1237
begin
declare y float default 2.6;
declare z char(16) default "zzz";
select 1.3, x, y, 42, z;
end|
1238
call bug2227(9)|
1239 1240
1.3	x	y	42	z
1.3	9	2.6	42	zzz
1241 1242 1243
drop procedure bug2227|
drop function if exists bug2674|
create function bug2674() returns int
1244
return @@sort_buffer_size|
1245 1246
set @osbs = @@sort_buffer_size|
set @@sort_buffer_size = 262000|
1247 1248
select bug2674()|
bug2674()
1249
262000
1250
drop function bug2674|
1251
set @@sort_buffer_size = @osbs|
1252
drop procedure if exists bug3259_1 |
1253
create procedure bug3259_1 () begin end|
1254
drop procedure if exists BUG3259_2 |
1255
create procedure BUG3259_2 () begin end|
1256
drop procedure if exists Bug3259_3 |
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
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|
1267 1268
drop function if exists bug2772|
create function bug2772() returns char(10) character set latin2
1269
return 'a'|
1270 1271
select bug2772()|
bug2772()
1272
a
1273 1274 1275
drop function bug2772|
drop procedure if exists bug2776_1|
create procedure bug2776_1(out x int)
1276 1277 1278 1279 1280
begin
declare v int;
set v = default;
set x = v;
end|
1281 1282
drop procedure if exists bug2776_2|
create procedure bug2776_2(out x int)
1283 1284 1285 1286 1287 1288
begin
declare v int default 42;
set v = default;
set x = v;
end|
set @x = 1|
1289
call bug2776_1(@x)|
1290 1291 1292
select @x|
@x
NULL
1293
call bug2776_2(@x)|
1294 1295 1296
select @x|
@x
42
1297 1298
drop procedure bug2776_1|
drop procedure bug2776_2|
1299 1300 1301 1302
drop table if exists t3|
create table t3 (s1 smallint)|
insert into t3 values (123456789012)|
Warnings:
unknown's avatar
unknown committed
1303
Warning	1264	Out of range value adjusted for column 's1' at row 1
1304 1305
drop procedure if exists bug2780|
create procedure bug2780()
1306 1307 1308 1309 1310 1311
begin
declare exit handler for sqlwarning set @x = 1; 
set @x = 0;
insert into t3 values (123456789012);
insert into t3 values (0);
end|
1312
call bug2780()|
1313 1314 1315 1316 1317 1318 1319
select @x|
@x
1
select * from t3|
s1
32767
32767
1320
drop procedure bug2780|
1321
drop table t3|
1322 1323 1324 1325
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)|
1326
drop procedure if exists bug1863|
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
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 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)|
Warnings:
call bug1863(10)|
Warnings:
select * from t4|
f1	rc	t3
2	0	NULL
2	0	NULL
drop procedure bug1863|
drop table t3, t4|
drop table if exists t3, t4|
create table t3 ( 
OrderID  int not null,
MarketID int,
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")|
1372
drop procedure if exists bug2656_1|
1373 1374 1375 1376 1377 1378 1379
create procedure bug2656_1()
begin 
select
m.Market
from  t4 m JOIN t3 o 
ON o.MarketID != 1 and o.MarketID = m.MarketID;
end |
1380
drop procedure if exists bug2656_2|
1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
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|
1405
drop procedure if exists bug3426|
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
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|
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|
drop table if exists t3, t4|
create table t3 (
a int primary key, 
ach char(1)
) engine = innodb|
create table t4 (
b int  primary key , 
bch char(1)
) engine = innodb|
insert into t3 values (1 , 'aCh1' ) , ('2' , 'aCh2')|
Warnings:
Warning	1265	Data truncated for column 'ach' at row 1
Warning	1265	Data truncated for column 'ach' at row 2
insert into t4 values (1 , 'bCh1' )|
Warnings:
Warning	1265	Data truncated for column 'bch' at row 1
1450
drop procedure if exists bug3448|
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
create procedure bug3448()
select * from t3 inner join t4 on t3.a = t4.b|
select * from t3 inner join t4 on t3.a = t4.b|
a	ach	b	bch
1	a	1	b
call bug3448()|
a	ach	b	bch
1	a	1	b
call bug3448()|
a	ach	b	bch
1	a	1	b
drop procedure bug3448|
drop table t3, t4|
drop table if exists t3|
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 ...')|
1478
drop procedure if exists bug3734 |
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
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|
1490
drop procedure if exists bug3863|
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
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|
1507 1508 1509 1510 1511 1512 1513
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)
)|
1514
drop procedure if exists bug2460_1|
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
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
1538
drop procedure if exists bug2460_2|
1539 1540 1541
create procedure bug2460_2()
begin
drop table if exists t3;
1542
create temporary table t3 (s1 int);
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
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|
1553
set @@sql_mode = ''|
1554
drop procedure if exists bug2564_1|
1555 1556 1557 1558
create procedure bug2564_1()
comment 'Joe''s procedure'
  insert into `t1` values ("foo", 1)|
set @@sql_mode = 'ANSI_QUOTES'|
1559
drop procedure if exists bug2564_2|
1560 1561 1562
create procedure bug2564_2()
insert into "t1" values ('foo', 1)|
set @@sql_mode = ''$
1563
drop function if exists bug2564_3$
1564 1565 1566
create function bug2564_3(x int, y int) returns int
return x || y$
set @@sql_mode = 'ANSI'$
1567
drop function if exists bug2564_4$
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
create function bug2564_4(x int, y int) returns int
return x || y$
set @@sql_mode = ''|
show create procedure bug2564_1|
Procedure	sql_mode	Create Procedure
bug2564_1		CREATE PROCEDURE `test`.`bug2564_1`()
    COMMENT 'Joe''s procedure'
insert into `t1` values ("foo", 1)
show create procedure bug2564_2|
Procedure	sql_mode	Create Procedure
bug2564_2	ANSI_QUOTES	CREATE PROCEDURE "test"."bug2564_2"()
insert into "t1" values ('foo', 1)
show create function bug2564_3|
Function	sql_mode	Create Function
bug2564_3		CREATE FUNCTION `test`.`bug2564_3`(x int, y int) RETURNS int
return x || y
show create function bug2564_4|
Function	sql_mode	Create Function
bug2564_4	REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ONLY_FULL_GROUP_BY,ANSI	CREATE FUNCTION "test"."bug2564_4"(x int, y int) RETURNS int
return x || y
drop procedure bug2564_1|
drop procedure bug2564_2|
drop function bug2564_3|
drop function bug2564_4|
1592
drop function if exists bug3132|
1593 1594 1595 1596 1597 1598 1599
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|
1600
drop procedure if exists bug3843|
1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
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|
1613 1614 1615
drop table if exists t3|
create table t3 ( s1 char(10) )|
insert into t3 values ('a'), ('b')|
1616
drop procedure if exists bug3368|
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
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|
1629
drop table if exists t3|
1630 1631
create table t3 (f1 int, f2 int)|
insert into t3 values (1,1)|
1632
drop procedure if exists bug4579_1|
1633 1634 1635 1636 1637 1638 1639
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|
1640
drop procedure if exists bug4579_2|
1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651
create procedure bug4579_2 ()
begin
end|
call bug4579_1()|
call bug4579_1()|
Warnings:
call bug4579_1()|
Warnings:
drop procedure bug4579_1|
drop procedure bug4579_2|
drop table t3|
1652 1653 1654
drop table if exists t3|
create table t3 (f1 int, f2 int, f3 int)|
insert into t3 values (1,1,1)|
1655
drop procedure if exists bug4726|
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
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|
1672
drop procedure if exists bug4902|
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
create procedure bug4902()
begin
show charset like 'foo';
show collation like 'foo';
show column types;
show create table t1;
show create database test;
show databases like 'foo';
show errors;
show columns from t1;
show grants for 'root'@'localhost';
show keys from t1;
show open tables like 'foo';
show privileges;
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
Type	Size	Min_Value	Max_Value	Prec	Scale	Nullable	Auto_Increment	Unsigned	Zerofill	Searchable	Case_Sensitive	Default	Comment
tinyint	1	-128	127	0	0	YES	YES	NO	YES	YES	NO	NULL,0	A very small integer
tinyint unsigned	1	0	255	0	0	YES	YES	YES	YES	YES	NO	NULL,0	A very small integer
Table	Create Table
t1	CREATE TABLE `t1` (
unknown's avatar
unknown committed
1700 1701
  `id` char(16) NOT NULL,
  `data` int(11) NOT NULL
1702 1703 1704 1705 1706 1707
) 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
1708 1709
id	char(16)	NO			
data	int(11)	NO			
1710 1711 1712 1713 1714 1715
Grants for root@localhost
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
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
Privilege	Context	Comment
Alter	Tables	To alter the table
1716
Alter routine	Functions,Procedures	To alter or drop stored functions/procedures
1717
Create	Databases,Tables,Indexes	To create new databases and tables
1718
Create routine	Functions,Procedures	To use CREATE FUNCTION/PROCEDURE
1719 1720 1721 1722
Create temporary tables	Databases	To use CREATE TEMPORARY TABLE
Create view	Tables	To create new views
Delete	Tables	To delete existing rows
Drop	Databases,Tables	To drop databases, tables, and views
1723
Execute	Functions,Procedures	To execute stored routines
1724
File	File access on server	To read and write files on the server
1725
Grant option	Databases,Tables,Functions,Procedures	To give to other users those privileges you possess
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741
Index	Tables	To create or drop indexes
Insert	Tables	To insert data into tables
Lock tables	Databases	To use LOCK TABLES (together with SELECT privilege)
Process	Server Admin	To view the plain text of currently executing queries
References	Databases,Tables	To have references on tables
Reload	Server Admin	To reload or refresh tables, logs and privileges
Replication client	Server Admin	To ask where the slave or master servers are
Replication slave	Server Admin	To read binary log events from the master
Select	Tables	To retrieve rows from table
Show databases	Server Admin	To see all databases with SHOW DATABASES
Show view	Tables	To see views with SHOW CREATE VIEW
Shutdown	Server Admin	To shut down the server
Super	Server Admin	To use KILL thread, SET GLOBAL, CHANGE MASTER, etc.
Update	Tables	To update existing rows
Usage	Server Admin	No privileges - allow connect only
Variable_name	Value
1742
Tables_in_test (foo)
1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
Variable_name	Value
Level	Code	Message
call bug4902()|
Charset	Description	Default collation	Maxlen
Collation	Charset	Id	Default	Compiled	Sortlen
Type	Size	Min_Value	Max_Value	Prec	Scale	Nullable	Auto_Increment	Unsigned	Zerofill	Searchable	Case_Sensitive	Default	Comment
tinyint	1	-128	127	0	0	YES	YES	NO	YES	YES	NO	NULL,0	A very small integer
tinyint unsigned	1	0	255	0	0	YES	YES	YES	YES	YES	NO	NULL,0	A very small integer
Table	Create Table
t1	CREATE TABLE `t1` (
unknown's avatar
unknown committed
1753 1754
  `id` char(16) NOT NULL,
  `data` int(11) NOT NULL
1755 1756 1757 1758 1759 1760
) 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
1761 1762
id	char(16)	NO			
data	int(11)	NO			
1763 1764 1765 1766 1767 1768
Grants for root@localhost
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
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
Privilege	Context	Comment
Alter	Tables	To alter the table
1769
Alter routine	Functions,Procedures	To alter or drop stored functions/procedures
1770
Create	Databases,Tables,Indexes	To create new databases and tables
1771
Create routine	Functions,Procedures	To use CREATE FUNCTION/PROCEDURE
1772 1773 1774 1775
Create temporary tables	Databases	To use CREATE TEMPORARY TABLE
Create view	Tables	To create new views
Delete	Tables	To delete existing rows
Drop	Databases,Tables	To drop databases, tables, and views
1776
Execute	Functions,Procedures	To execute stored routines
1777
File	File access on server	To read and write files on the server
1778
Grant option	Databases,Tables,Functions,Procedures	To give to other users those privileges you possess
1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
Index	Tables	To create or drop indexes
Insert	Tables	To insert data into tables
Lock tables	Databases	To use LOCK TABLES (together with SELECT privilege)
Process	Server Admin	To view the plain text of currently executing queries
References	Databases,Tables	To have references on tables
Reload	Server Admin	To reload or refresh tables, logs and privileges
Replication client	Server Admin	To ask where the slave or master servers are
Replication slave	Server Admin	To read binary log events from the master
Select	Tables	To retrieve rows from table
Show databases	Server Admin	To see all databases with SHOW DATABASES
Show view	Tables	To see views with SHOW CREATE VIEW
Shutdown	Server Admin	To shut down the server
Super	Server Admin	To use KILL thread, SET GLOBAL, CHANGE MASTER, etc.
Update	Tables	To update existing rows
Usage	Server Admin	No privileges - allow connect only
Variable_name	Value
1795
Tables_in_test (foo)
1796 1797 1798
Variable_name	Value
Level	Code	Message
drop procedure bug4902|
1799
drop procedure if exists bug4902_2|
unknown's avatar
unknown committed
1800 1801 1802 1803 1804 1805
create procedure bug4902_2()
begin
show processlist;
end|
call bug4902_2()|
Id	User	Host	db	Command	Time	State	Info
1806
#	root	localhost	test	Query	#	NULL	show processlist
unknown's avatar
unknown committed
1807 1808
call bug4902_2()|
Id	User	Host	db	Command	Time	State	Info
1809
#	root	localhost	test	Query	#	NULL	show processlist
unknown's avatar
unknown committed
1810
drop procedure bug4902_2|
1811
drop table if exists t3|
1812
drop procedure if exists bug4904|
1813 1814 1815
create procedure bug4904()
begin
declare continue handler for sqlstate 'HY000' begin end;
unknown's avatar
unknown committed
1816
create table t2 as select * from t3;
1817 1818
end|
call bug4904()|
unknown's avatar
unknown committed
1819
ERROR 42S02: Table 'test.t3' doesn't exist
1820
drop procedure bug4904|
unknown's avatar
unknown committed
1821
create table t3 (s1 char character set latin1, s2 char character set latin2)|
1822
drop procedure if exists bug4904|
unknown's avatar
unknown committed
1823 1824 1825 1826 1827 1828 1829 1830
create procedure bug4904 ()
begin
declare continue handler for sqlstate 'HY000' begin end;
select s1 from t3 union select s2 from t3; 
end|
call bug4904()|
drop procedure bug4904|
drop table t3|
1831
drop procedure if exists bug336|
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
create procedure bug336(out y int)
begin
declare x int;
set x = (select sum(t.data) from test.t1 t);
set y = x;
end|
insert into t1 values ("a", 2), ("b", 3)|
call bug336(@y)|
select @y|
@y
5
delete from t1|
drop procedure bug336|
1845
drop procedure if exists bug3157|
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
create procedure bug3157()
begin
if exists(select * from t1) then
set @n= @n + 1;
end if;
if (select count(*) from t1) then
set @n= @n + 1;
end if;
end|
set @n = 0|
insert into t1 values ("a", 1)|
call bug3157()|
select @n|
@n
2
delete from t1|
drop procedure bug3157|
1863
drop procedure if exists bug5251|
1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
create procedure bug5251()
begin
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|
1875
drop procedure if exists bug5251|
1876 1877 1878 1879 1880 1881 1882 1883 1884
create procedure bug5251()
checksum table t1|
call bug5251()|
Table	Checksum
test.t1	0
call bug5251()|
Table	Checksum
test.t1	0
drop procedure bug5251|
1885
drop procedure if exists bug5287|
1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
create procedure bug5287(param1 int)
label1:
begin
declare c cursor for select 5;
loop
if param1 >= 0 then
leave label1;
end if;
end loop;
end|
call bug5287(1)|
drop procedure bug5287|
1898
drop procedure if exists bug5307|
1899 1900 1901 1902 1903 1904 1905 1906
create procedure bug5307()
begin
end; set @x = 3|
call bug5307()|
select @x|
@x
3
drop procedure bug5307|
1907
drop procedure if exists bug5258|
1908 1909 1910
create procedure bug5258()
begin
end|
1911
drop procedure if exists bug5258_aux|
1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926
create procedure bug5258_aux()
begin
declare c, m char(19);
select created,modified into c,m from mysql.proc where name = 'bug5258';
if c = m then
select 'Ok';
else
select c, m;
end if;
end|
call bug5258_aux()|
Ok
Ok
drop procedure bug5258|
drop procedure bug5258_aux|
1927
drop function if exists bug4487|
1928 1929 1930 1931 1932 1933 1934 1935 1936
create function bug4487() returns char
begin
declare v char;
return v;
end|
select bug4487()|
bug4487()
NULL
drop function bug4487|
1937
drop procedure if exists bug4941|
1938
drop procedure if exists bug4941|
1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
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|
1954
drop procedure if exists bug3583|
1955
drop procedure if exists bug3583|
1956 1957 1958 1959 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
create procedure bug3583()
begin
declare c int;
select * from t1;
select count(*) into c from t1;
select c;
end|
insert into t1 values ("x", 3), ("y", 5)|
set @x = @@query_cache_size|
set global query_cache_size = 10*1024*1024|
flush status|
flush query cache|
show status like 'Qcache_hits'|
Variable_name	Value
Qcache_hits	0
call bug3583()|
id	data
x	3
y	5
c
2
show status like 'Qcache_hits'|
Variable_name	Value
Qcache_hits	0
call bug3583()|
id	data
x	3
y	5
c
2
call bug3583()|
id	data
x	3
y	5
c
2
show status like 'Qcache_hits'|
Variable_name	Value
Qcache_hits	2
set global query_cache_size = @x|
flush status|
flush query cache|
delete from t1|
drop procedure bug3583|
2000 2001 2002
drop table if exists t3|
drop procedure if exists bug4905|
create table t3 (s1 int,primary key (s1))|
2003
drop procedure if exists bug4905|
2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
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()
0
call bug4905()|
select row_count()|
row_count()
0
select * from t3|
s1
1
drop procedure bug4905|
drop table t3|
2027
drop function if exists bug6022|
2028
drop function if exists bug6022|
2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
create function bug6022(x int) returns int
begin
if x < 0 then
return 0;
else
return bug6022(x-1);
end if;
end|
select bug6022(5)|
bug6022(5)
0
drop function bug6022|
2041
drop procedure if exists bug6029|
2042
drop procedure if exists bug6029|
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
create procedure bug6029()
begin
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|
2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
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|
unknown's avatar
unknown committed
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 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
drop table if exists t3|
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;
--enable_warnings|
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) )
begin
declare var mediumint(8) unsigned;
select a into var from t4 where b = 2 and c = binary searchstring limit 1;
select var;
end|
call bug7743("oneword")|
var
1
call bug7743("OneWord")|
var
NULL
call bug7743("anotherword")|
var
2
call bug7743("AnotherWord")|
var
NULL
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()
begin
declare i int;
select max(s1)+1 into i from t3;
end|
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|
drop table if exists 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|
unknown's avatar
unknown committed
2163 2164
drop table if exists fac|
create table fac (n int unsigned not null primary key, f bigint unsigned)|
2165
drop procedure if exists ifac|
2166 2167
create procedure ifac(n int unsigned)
begin
2168
declare i int unsigned default 1;
2169 2170 2171 2172 2173 2174 2175 2176 2177
if n > 20 then
set n = 20;		# bigint overflow otherwise
end if;
while i <= n do
begin
insert into test.fac values (i, fac(i));
set i = i + 1;
end;
end while;
unknown's avatar
unknown committed
2178 2179 2180
end|
call ifac(20)|
select * from fac|
2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201
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
unknown's avatar
unknown committed
2202 2203
drop table fac|
show function status like '%f%'|
2204 2205
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
test	fac	FUNCTION	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
unknown's avatar
unknown committed
2206 2207 2208
drop procedure ifac|
drop function fac|
show function status like '%f%'|
2209
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
unknown's avatar
unknown committed
2210
drop table if exists primes|
2211 2212 2213
create table primes (
i int unsigned not null primary key,
p bigint unsigned not null
unknown's avatar
unknown committed
2214
)|
2215 2216 2217 2218 2219 2220 2221 2222 2223
insert into primes values
( 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),
unknown's avatar
unknown committed
2224
(40, 181), (41, 191), (42, 193), (43, 197), (44, 199)|
2225
drop procedure if exists opp|
2226 2227 2228
create procedure opp(n bigint unsigned, out pp bool)
begin
declare r double;
2229
declare b, s bigint unsigned default 0;
2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249
set r = sqrt(n);
again:
loop
if s = 45 then
set b = b+200, s = 0;
else
begin
declare p bigint unsigned;
select t.p into p from test.primes t where t.i = s;
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;
unknown's avatar
unknown committed
2250
end loop;
unknown's avatar
unknown committed
2251
end|
2252
drop procedure if exists ip|
2253 2254 2255 2256 2257 2258 2259
create procedure ip(m int unsigned)
begin
declare p bigint unsigned;
declare i int unsigned;
set i=45, p=201;
while i < m do
begin
2260
declare pp bool default 0;
2261 2262 2263 2264 2265 2266 2267 2268
call opp(p, pp);
if pp then
insert into test.primes values (i, p);
set i = i+1;
end if;
set p = p+2;
end;
end while;
unknown's avatar
unknown committed
2269 2270
end|
show create procedure opp|
2271 2272
Procedure	sql_mode	Create Procedure
opp		CREATE PROCEDURE `test`.`opp`(n bigint unsigned, out pp bool)
unknown's avatar
unknown committed
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
begin
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
begin
declare p bigint unsigned;
select t.p into p from test.primes t where t.i = s;
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;
end
unknown's avatar
unknown committed
2298
show procedure status like '%p%'|
2299 2300 2301
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
test	ip	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
test	opp	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	
unknown's avatar
unknown committed
2302 2303
call ip(200)|
select * from primes where i=45 or i=100 or i=199|
2304 2305 2306 2307
i	p
45	211
100	557
199	1229
unknown's avatar
unknown committed
2308 2309 2310 2311
drop table primes|
drop procedure opp|
drop procedure ip|
show procedure status like '%p%'|
2312
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
unknown's avatar
unknown committed
2313 2314 2315
drop table if exists fib|
create table fib ( f bigint unsigned not null )|
insert into fib values (1), (1)|
2316
drop procedure if exists fib|
2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330
create procedure fib(n int unsigned)
begin
if n > 0 then
begin
declare x, y bigint unsigned;
declare c cursor for select f from fib order by f desc limit 2;
open c;
fetch c into y;
fetch c into x;
close c;
insert into fib values (x+y);
call fib(n-1);
end;
end if;
unknown's avatar
unknown committed
2331 2332 2333
end|
call fib(20)|
select * from fib order by f asc|
2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356
f
1
1
2
3
5
8
13
21
34
55
89
144
233
377
610
987
1597
2584
4181
6765
10946
17711
unknown's avatar
unknown committed
2357 2358
drop table fib|
drop procedure fib|
2359
drop procedure if exists bar|
unknown's avatar
unknown committed
2360
create procedure bar(x char(16), y int)
2361
comment "111111111111" sql security invoker
unknown's avatar
unknown committed
2362 2363
insert into test.t1 values (x, y)|
show procedure status like 'bar'|
2364 2365
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
test	bar	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	INVOKER	111111111111
2366 2367
alter procedure bar comment "2222222222" sql security definer|
alter procedure bar comment "3333333333"|
unknown's avatar
unknown committed
2368 2369
alter procedure bar|
show create procedure bar|
2370 2371
Procedure	sql_mode	Create Procedure
bar		CREATE PROCEDURE `test`.`bar`(x char(16), y int)
2372
    COMMENT '3333333333'
unknown's avatar
unknown committed
2373
insert into test.t1 values (x, y)
unknown's avatar
unknown committed
2374
show procedure status like 'bar'|
2375 2376
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
test	bar	PROCEDURE	root@localhost	0000-00-00 00:00:00	0000-00-00 00:00:00	DEFINER	3333333333
unknown's avatar
unknown committed
2377
drop procedure bar|
2378 2379 2380 2381 2382 2383 2384 2385 2386
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)
2387
1
2388 2389 2390 2391 2392 2393
drop procedure p1|
drop table t3|
drop function if exists foo|
create function `foo` () returns int
return 5|
select `foo` ()|
2394 2395
`foo` ()
5
2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482
drop function `foo`|
drop function if exists t1max|
Warnings:
Note	1305	FUNCTION t1max does not exist
create function t1max() returns int
begin
declare x int;
select max(data) into x from t1;
return x;
end|
insert into t1 values ("foo", 3), ("bar", 2), ("zip", 5), ("zap", 1)|
select t1max()|
t1max()
5
drop function t1max|
drop table if exists t3|
create table t3 (
v char(16) not null primary key,
c int unsigned not null
)|
create function getcount(s char(16)) returns int
begin
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;
end|
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")
1
select * from t3|
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
drop table t3|
drop function getcount|
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()
42	42
drop function bug5240|
drop function if exists bug5278|
create function bug5278 () returns char
begin
SET PASSWORD FOR 'bob'@'%.loc.gov' = PASSWORD('newpass');
return 'okay';
end|
select bug5278()|
ERROR 42000: Can't find any matching row in the user table
select bug5278()|
ERROR 42000: Can't find any matching row in the user table
drop function bug5278|
unknown's avatar
unknown committed
2483 2484 2485 2486
drop procedure if exists p1|
create table t3(id int)|
insert into t3 values(1)|
create procedure bug7992()
2487 2488
begin
declare i int;
unknown's avatar
unknown committed
2489 2490 2491 2492 2493 2494
select max(id)+1 into i from t3;
end|
call bug7992()|
call bug7992()|
drop procedure bug7992|
drop table t3|
2495 2496
drop table t1;
drop table t2;