sp.result 43.4 KB
Newer Older
1
reset master;
2 3
use test;
drop table if exists t1;
4
drop table if exists t2;
5 6 7 8
create table t1 (
id   char(16) not null,
data int not null
);
9
create table t2 (
10 11 12
s   char(16),
i   int,
d   double
13
);
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 23
create procedure bar(x char(16), y int)
insert into test.t1 values (x, y);
24 25 26 27 28
call bar("bar", 666);
select * from t1;
id	data
bar	666
delete from t1;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
29 30
create procedure empty()
begin
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
31 32 33
end|
call empty()|
drop procedure empty|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
34 35 36 37 38 39 40
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
41 42
end|
drop procedure scope|
43 44 45 46
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
47 48 49
end|
call two("one", "two", 3)|
select * from t1|
50 51 52
id	data
one	3
two	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
53 54
delete from t1|
drop procedure two|
55 56 57 58 59 60
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
61 62 63
end|
call locset("locset", 19)|
select * from t1|
64 65
id	data
locset	21
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
66 67
delete from t1|
drop procedure locset|
68 69 70 71 72 73 74 75 76 77 78 79 80 81
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|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
82 83
drop table if exists t3|
create table t3 ( d date, i int, f double, s varchar(32) )|
84 85 86 87 88 89 90 91
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);
92 93 94 95 96 97
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
98 99 100
end|
call nullset()|
select * from t3|
101 102
d	i	f	s
NULL	NULL	NULL	NULL
103 104 105 106 107 108
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
109 110
drop table t3|
drop procedure nullset|
111 112 113 114 115
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
116 117 118
end|
call mixset("mixset", 19)|
show variables like 'max_join_size'|
119 120
Variable_name	Value
max_join_size	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
121
select id,data,@z from t1|
122 123
id	data	@z
mixset	666	19
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
124 125
delete from t1|
drop procedure mixset|
126 127 128 129 130
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
131
end|
132 133 134 135
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
136 137 138
end|
call zip("zip", 99)|
select * from t1|
139 140
id	data
zip	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
141 142 143 144 145
delete from t1|
drop procedure zip|
drop procedure bar|
call zap(7, @zap)|
select @zap|
146 147
@zap
8
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
148
drop procedure zap|
149
create procedure c1(x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
150
call c2("c", x)|
151
create procedure c2(s char(16), x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
152
call c3(x, s)|
153
create procedure c3(x int, s char(16))
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
154
call c4("level", x, s)|
155
create procedure c4(l char(8), x int, s char(16))
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
156 157 158
insert into t1 values (concat(l,s), x)|
call c1(42)|
select * from t1|
159 160
id	data
levelc	42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
161 162 163 164 165
delete from t1|
drop procedure c1|
drop procedure c2|
drop procedure c3|
drop procedure c4|
166 167 168 169
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
170
end|
171 172 173 174
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
175
end|
176
create procedure inc(inout io int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
177 178 179
set io = io + 1|
call iotest("io1", "io2", 1)|
select * from t1|
180 181 182
id	data
io2	2
io1	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
183 184 185
delete from t1|
drop procedure iotest|
drop procedure inc2|
186
create procedure incr(inout x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
187 188
call inc(x)|
select @zap|
189 190
@zap
8
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
191 192
call incr(@zap)|
select @zap|
193 194
@zap
9
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
195 196
drop procedure inc|
drop procedure incr|
197 198
create procedure cbv1()
begin
199
declare y int default 3;
200 201
call cbv2(y+1, y);
insert into test.t1 values ("cbv1", y);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
202
end|
203 204 205 206
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
207 208 209
end|
call cbv1()|
select * from t1|
210 211 212
id	data
cbv2	4
cbv1	4711
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
213 214 215 216
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)|
pem@mysql.com's avatar
pem@mysql.com committed
217
create procedure sub1(id char(16), x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
218
insert into test.t1 values (id, x)|
pem@mysql.com's avatar
pem@mysql.com committed
219
create function sub3(i int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
220 221 222 223 224 225
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|
pem@mysql.com's avatar
pem@mysql.com committed
226 227 228 229 230
id	data
sub1a	7
sub1b	3
sub1c	1
sub1d	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
231
select sub3((select max(i) from t2))|
pem@mysql.com's avatar
pem@mysql.com committed
232 233
sub3((select max(i) from t2))
4
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
234 235 236
drop procedure sub1|
drop function sub3|
delete from t2|
237 238 239 240
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
241 242 243
end while|
call a0(3)|
select * from t1|
244
id	data
pem@mysql.com's avatar
pem@mysql.com committed
245 246 247 248
sub1a	7
sub1b	3
sub1c	1
sub1d	1
249 250 251
a0	2
a0	1
a0	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
252 253
delete from t1|
drop procedure a0|
254 255 256 257
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
258 259 260
end while|
call a(3)|
select * from t1|
261 262 263 264
id	data
a	2
a	1
a	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
265 266
delete from t1|
drop procedure a|
267
create procedure b(x int)
268 269
repeat
insert into test.t1 values (repeat("b",3), x);
270
set x = x-1;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
271 272 273
until x = 0 end repeat|
call b(3)|
select * from t1|
274 275 276 277
id	data
bbb	3
bbb	2
bbb	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
278 279
delete from t1|
drop procedure b|
280 281 282 283
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
284 285
until x = 0 end repeat|
drop procedure b2|
286 287 288 289 290 291
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
292 293 294
end while hmm|
call c(3)|
select * from t1|
295 296 297 298
id	data
c	3
c	2
c	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
299 300
delete from t1|
drop procedure c|
301 302 303 304 305 306
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
307 308 309
end while|
call d(3)|
select * from t1|
310 311
id	data
d	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
312 313
delete from t1|
drop procedure d|
314 315 316 317 318 319 320
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
321 322 323
end loop foo|
call e(3)|
select * from t1|
324 325 326 327
id	data
e	3
e	2
e	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
328 329
delete from t1|
drop procedure e|
330 331 332 333 334 335 336
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
337 338 339 340 341
end if|
call f(-2)|
call f(0)|
call f(4)|
select * from t1|
342 343 344 345
id	data
f	0
f	1
f	2
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
346 347
delete from t1|
drop procedure f|
348 349 350 351 352 353 354 355
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
356 357 358 359 360
end case|
call g(-42)|
call g(0)|
call g(1)|
select * from t1|
361 362 363 364
id	data
g	0
g	1
g	2
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
365 366
delete from t1|
drop procedure g|
367 368 369 370 371 372 373 374
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
375 376 377 378 379
end case|
call h(0)|
call h(1)|
call h(17)|
select * from t1|
380 381 382 383
id	data
h0	0
h1	1
h?	17
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
384 385
delete from t1|
drop procedure h|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
386 387 388 389 390 391 392
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
393 394 395 396
end foo|
call i(0)|
call i(3)|
select * from t1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
397 398
id	data
i	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
399 400
delete from t1|
drop procedure i|
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
create procedure j()
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|
call j()|
id	data
id	data
j	0
id	data
j	0
j	1
id	data
j	0
j	1
j	2
drop procedure j|
create procedure k(a int)
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|
call k(0)|
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
call k(1)|
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
call k(2)|
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
id	data
j	0
j	1
j	2
drop procedure k|
delete from t1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
insert into t1 values ("foo", 3), ("bar", 19)|
insert into t2 values ("x", 9, 4.1), ("y", -1, 19.2), ("z", 3, 2.2)|
create procedure sel1()
begin
select * from t1;
end|
call sel1()|
id	data
foo	3
bar	19
drop procedure sel1|
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|
509 510 511 512 513
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
514 515 516
end|
call into_test("into", 100)|
select * from t1|
517
id	data
518 519
into	100
into2	102
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
520 521
delete from t1|
drop procedure into_test|
522 523 524 525 526
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
527 528 529
end|
call into_test2("into", 100)|
select id,data,@z from t1|
530 531 532
id	data	@z
into	100	100
into2	102	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
533 534
delete from t1|
drop procedure into_test2|
535 536 537 538 539 540
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
541 542 543 544 545
end|
insert into t1 values ("into3", 19)|
call into_test3()|
call into_test3()|
select * from t2|
546 547 548
s	i	d
into3	19	0
into3	19	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
549 550 551
delete from t1|
delete from t2|
drop procedure into_test3|
552 553 554 555 556
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
557 558 559 560 561
end|
delete from t1|
drop table if exists t3|
create table t3 ( s char(16), d int)|
call into_test4()|
562
Warnings:
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
563
select * from t3|
564 565
s	d
into4	NULL
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
566 567 568
insert into t1 values ("i4", 77)|
call into_test4()|
select * from t3|
569 570 571
s	d
into4	NULL
into4	77
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
572 573 574
delete from t1|
drop table t3|
drop procedure into_test4|
575 576 577 578 579
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);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
580 581 582 583
end|
call into_outfile("ofile", 1)|
delete from t1|
drop procedure into_outfile|
584 585 586 587 588
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);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
589 590 591 592
end|
call into_dumpfile("dfile", 1)|
delete from t1|
drop procedure into_dumpfile|
593 594 595
create procedure create_select(x char(16), y int)
begin
insert into test.t1 values (x, y);
pem@mysql.com's avatar
pem@mysql.com committed
596 597
create table test.t3 select * from test.t1;
insert into test.t3 values (concat(x, "2"), y+2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
598 599 600 601
end|
drop table if exists t3|
call create_select("cs", 90)|
select * from t1, t3|
pem@mysql.com's avatar
pem@mysql.com committed
602 603 604
id	data	id	data
cs	90	cs	90
cs	90	cs2	92
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
605 606 607
drop table if exists t3|
delete from t1|
drop procedure create_select|
608
create function e() returns double
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
609 610 611
return 2.7182818284590452354|
set @e = e()|
select e(), @e|
612 613
e()	@e
2.718281828459	2.718281828459
614
create function inc(i int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
615 616
return i+1|
select inc(1), inc(99), inc(-71)|
617 618 619
inc(1)	inc(99)	inc(-71)
2	100	-70
create function mul(x int, y int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
620 621
return x*y|
select mul(1,1), mul(3,5), mul(4711, 666)|
622 623
mul(1,1)	mul(3,5)	mul(4711, 666)
1	15	3137526
624
create function append(s1 char(8), s2 char(8)) returns char(16)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
625 626
return concat(s1, s2)|
select append("foo", "bar")|
627 628
append("foo", "bar")
foobar
629 630
create function fac(n int unsigned) returns bigint unsigned
begin
631
declare f bigint unsigned default 1;
632 633 634 635 636
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
637 638
end|
select fac(1), fac(2), fac(5), fac(10)|
639 640
fac(1)	fac(2)	fac(5)	fac(10)
1	2	120	3628800
641
create function fun(d double, i int, u int unsigned) returns double
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
642 643
return mul(inc(i), fac(u)) / e()|
select fun(2.3, 3, 5)|
644 645
fun(2.3, 3, 5)
176.58213176229
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
646 647 648
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")|
649 650
s	i	d
ab	24	1324.36598821719
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
651
select * from t2 where i = mul(4,3) or i = mul(mul(3,4),2)|
652 653 654
s	i	d
xxxyyy	12	2.71828182845905
ab	24	1324.36598821719
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
655
select * from t2 where d = e()|
656 657
s	i	d
xxxyyy	12	2.71828182845905
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
658
select * from t2|
659 660 661
s	i	d
xxxyyy	12	2.71828182845905
ab	24	1324.36598821719
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
662 663 664 665 666 667
delete from t2|
drop function e|
drop function inc|
drop function mul|
drop function append|
drop function fun|
668 669 670 671
create procedure hndlr1(val int)
begin
declare x int default 0;
declare foo condition for 1146;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
672 673
declare bar condition for sqlstate '42S98';        # Just for testing syntax
declare zip condition for sqlstate value '42S99';  # Just for testing syntax
674 675 676 677 678
declare continue handler for foo set x = 1;
insert into test.t666 values ("hndlr1", val);   # Non-existing table
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
679 680 681
end|
call hndlr1(42)|
select * from t1|
682 683
id	data
hndlr1	42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
684 685
delete from t1|
drop procedure hndlr1|
686 687 688 689
create procedure hndlr2(val int)
begin
declare x int default 0;
begin
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
690
declare exit handler for sqlstate '42S02' set x = 1;
691 692 693
insert into test.t666 values ("hndlr2", val); # Non-existing table
end;
insert into test.t1 values ("hndlr2", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
694 695 696
end|
call hndlr2(42)|
select * from t1|
697 698
id	data
hndlr2	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
699 700
delete from t1|
drop procedure hndlr2|
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
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;
insert into test.t666 values ("hndlr3", y);  # Non-existing table
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
720 721 722
end|
call hndlr3(3)|
select * from t1|
723 724
id	data
hndlr3	13
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
725 726 727 728
delete from t1|
drop procedure hndlr3|
drop table if exists t3|
create table t3 ( id   char(16), data int )|
729 730 731 732
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
733
declare continue handler for sqlstate '02000' set x=1;
734 735
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
736 737 738
end|
call hndlr4()|
select * from t3|
739
id	data
740
z	NULL
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
741 742
drop table t3|
drop procedure hndlr4|
743 744 745 746 747
create procedure cur1()
begin
declare a char(16);
declare b int;
declare c double;
748 749 750
declare done int default 0;
declare c cursor for select * from test.t2;
declare continue handler for sqlstate '02000' set done = 1;
751 752 753 754 755 756 757 758
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
759 760 761 762
end|
insert into t2 values ("foo", 42, -1.9), ("bar", 3, 12.1), ("zap", 666, -3.14)|
call cur1()|
select * from t1|
763 764 765 766
id	data
foo	40
bar	15
zap	663
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
767 768 769
drop procedure cur1|
drop table if exists t3|
create table t3 ( s char(16), i int )|
770 771 772 773 774
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;
775
declare continue handler for sqlstate '02000' set done = 1;
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
open c1;
open c2;
repeat
begin
declare a char(16);
declare b,c int;
fetch c1 into a, b;
fetch c2 into c;
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
795 796 797
end|
call cur2()|
select * from t3|
798 799 800 801
s	i
foo	40
bar	3
zap	663
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
802 803 804 805
delete from t1|
delete from t2|
drop table t3|
drop procedure cur2|
806 807 808 809 810
create procedure chistics()
language sql
not deterministic
sql security definer
comment 'Characteristics procedure test'
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
811 812 813
 insert into t1 values ("chistics", 1)|
call chistics()|
select * from t1|
814 815
id	data
chistics	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
816 817 818
delete from t1|
alter procedure chistics sql security invoker name chistics2|
show create procedure chistics2|
819 820
Procedure	sql_mode	Create Procedure
chistics2		CREATE PROCEDURE `test`.`chistics2`()
821 822 823
    SQL SECURITY INVOKER
    COMMENT 'Characteristics procedure test'
insert into t1 values ("chistics", 1)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
824
drop procedure chistics2|
825 826 827 828 829
create function chistics() returns int
language sql
deterministic
sql security invoker
comment 'Characteristics procedure test'
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
830 831
 return 42|
select chistics()|
832 833
chistics()
42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
834 835
alter function chistics name chistics2 comment 'Characteristics function test'|
show create function chistics2|
836 837
Function	sql_mode	Create Function
chistics2		CREATE FUNCTION `test`.`chistics2`() RETURNS int
838 839 840 841
    DETERMINISTIC
    SQL SECURITY INVOKER
    COMMENT 'Characteristics function test'
return 42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
842 843 844
drop function chistics2|
insert into t1 values ("foo", 1), ("bar", 2), ("zip", 3)|
set @@sql_mode = 'ANSI'|
845 846 847 848 849
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;
850
declare continue handler for sqlstate '02000' set done = 1;
851 852 853 854 855 856 857 858 859 860
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
861 862 863 864 865 866
end$
set @@sql_mode = ''|
set sql_select_limit = 1|
call modes(@c1, @c2)|
set sql_select_limit = default|
select @c1, @c2|
867 868
@c1	@c2
12	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
869 870
delete from t1|
drop procedure modes|
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
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|
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 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
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
908 909 910 911 912
select * from t1|
id	data
select row_count()|
row_count()
-1
913
drop procedure rc|
914 915 916 917 918 919 920
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);
end if;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
921 922 923 924 925
end|
call bug822('foo', 42)|
call bug822('foo', 42)|
call bug822('bar', 666)|
select * from t1|
926 927 928
id	data
foo	42
bar	666
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
929 930
delete from t1|
drop procedure bug822|
931 932 933 934 935 936 937 938 939
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;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
940 941 942 943 944 945 946 947
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'|
select * from t1|
948 949 950
id	data
less	2
more	17
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
951 952
delete from t1|
drop procedure bug1495|
953 954 955 956 957 958 959 960 961
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;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
962 963 964 965 966
end|
insert into t1 values ("foo", 12), ("bar", 7)|
call bug1547("foo")|
call bug1547("bar")|
select * from t1|
967 968 969 970 971
id	data
foo	12
bar	7
less	2
more	17
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
972 973 974 975 976
delete from t1|
drop procedure bug1547|
drop table if exists t70|
create table t70 (s1 int,s2 int)|
insert into t70 values (1,2)|
977
create procedure bug1656(out p1 int, out p2 int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
978 979 980
select * into p1, p1 from t70|
call bug1656(@1, @2)|
select @1, @2|
981 982
@1	@2
2	NULL
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
983 984 985 986
drop table t70|
drop procedure bug1656|
drop table if exists t3|
create table t3(a int)|
987 988 989 990
create procedure bug1862()
begin
insert into t3 values(2);    
flush tables;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
991 992 993 994
end|
call bug1862()|
call bug1862()|
select * from t3|
995 996 997
a
2
2
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
998 999
drop table t3|
drop procedure bug1862|
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
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);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1012 1013 1014 1015
end|
insert into t1 (data) values (3), (1), (5), (9), (4)|
call bug1874()|
select * from t2|
1016 1017 1018 1019 1020
s	i	d
max	9	0
min	1	0
sum	22	0
avg	0	4.4
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1021 1022 1023
delete from t1|
delete from t2|
drop procedure bug1874|
1024 1025 1026 1027
create procedure bug2260()
begin
declare v1 int;
declare c1 cursor for select data from t1;
1028
declare continue handler for not found set @x2 = 1;
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
open c1;
fetch c1 into v1;
set @x2 = 2;
close c1;
end|
call bug2260()|
select @x2|
@x2
2
drop procedure bug2260|
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
create procedure bug2267_1()
begin
show procedure status;
end|
create procedure bug2267_2()
begin
show function status;
end|
create procedure bug2267_3()
begin
show create procedure bug2267_1;
end|
create procedure bug2267_4()
begin
show create function fac;
end|
call bug2267_1()|
1056 1057 1058 1059 1060
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	
1061
call bug2267_2()|
1062 1063
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	
1064
call bug2267_3()|
1065 1066
Procedure	sql_mode	Create Procedure
bug2267_1		CREATE PROCEDURE `test`.`bug2267_1`()
1067 1068 1069 1070
begin
show procedure status;
end
call bug2267_4()|
1071 1072
Function	sql_mode	Create Function
fac		CREATE FUNCTION `test`.`fac`(n int unsigned) RETURNS bigint unsigned
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
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|
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
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|
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
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|
1106 1107
create function bug2674 () returns int
return @@sort_buffer_size|
1108 1109
set @osbs = @@sort_buffer_size|
set @@sort_buffer_size = 262000|
1110 1111
select bug2674()|
bug2674()
1112
262000
1113
drop function bug2674|
1114
set @@sort_buffer_size = @osbs|
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
create procedure bug3259_1 () begin end|
create procedure BUG3259_2 () begin end|
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|
1127 1128 1129 1130 1131 1132
create function bug2772() returns char(10) character set latin2
return 'a'|
select bug2772()|
bug2772()
a
drop function bug2772|
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
create procedure bug2776_1(out x int)
begin
declare v int;
set v = default;
set x = v;
end|
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|
1156 1157 1158 1159
drop table if exists t3|
create table t3 (s1 smallint)|
insert into t3 values (123456789012)|
Warnings:
monty@mysql.com's avatar
monty@mysql.com committed
1160
Warning	1264	Data truncated; out of range for column 's1' at row 1
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
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|
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 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
drop table if exists t3|
create table t3 (content varchar(10) )|
insert into t3 values ("test1")|
insert into t3 values ("test2")|
drop table if exists t4|
create table t4 (f1 int, rc int, t3 int)|
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")|
create procedure bug2656_1()
begin 
select
m.Market
from  t4 m JOIN t3 o 
ON o.MarketID != 1 and o.MarketID = m.MarketID;
end |
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|
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
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 ...')|
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|
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|
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
drop table if exists t3|
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)
)|
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
create procedure bug2460_2()
begin
drop table if exists t3;
create table t3 (s1 int);
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|
1403 1404 1405 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
set @@sql_mode = ''|
create procedure bug2564_1()
comment 'Joe''s procedure'
  insert into `t1` values ("foo", 1)|
set @@sql_mode = 'ANSI_QUOTES'|
create procedure bug2564_2()
insert into "t1" values ('foo', 1)|
set @@sql_mode = ''$
create function bug2564_3(x int, y int) returns int
return x || y$
set @@sql_mode = 'ANSI'$
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|
1438 1439 1440 1441 1442 1443 1444
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|
1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
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|
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
drop table if exists t3|
create table t3 ( s1 char(10) )|
insert into t3 values ('a'), ('b')|
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|
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
drop table if exists t3|
create table t3 (f1 int, f2 int);
insert into t3 values (1,1);
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|
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|
1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
drop table if exists t3|
create table t3 (f1 int, f2 int, f3 int)|
insert into t3 values (1,1,1)|
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|
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
drop table if exists t3|
create table t3 (s1 int)|
insert into t3 values (3), (4)|
create procedure bug4318()
handler t3 read next|
handler t3 open|
call bug4318()|
s1
3
call bug4318()|
s1
4
handler t3 close|
drop procedure bug4318|
drop table t3|
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
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 master status;
show open tables like 'foo';
show privileges;
show slave hosts;
show slave status;
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` (
  `id` char(16) NOT NULL default '',
  `data` int(11) NOT NULL default '0'
) 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
id	char(16)				
data	int(11)			0	
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
File	Position	Binlog_Do_DB	Binlog_Ignore_DB
1571
master-bin.000001	22451		
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
Database	Table	In_use	Name_locked
Privilege	Context	Comment
Alter	Tables	To alter the table
Create	Databases,Tables,Indexes	To create new databases and tables
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
File	File access on server	To read and write files on the server
Grant option	Databases,Tables	To give to other users those privileges you possess
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
Server_id	Host	Port	Rpl_recovery_rank	Master_id
Slave_IO_State	Master_Host	Master_User	Master_Port	Connect_Retry	Master_Log_File	Read_Master_Log_Pos	Relay_Log_File	Relay_Log_Pos	Relay_Master_Log_File	Slave_IO_Running	Slave_SQL_Running	Replicate_Do_DB	Replicate_Ignore_DB	Replicate_Do_Table	Replicate_Ignore_Table	Replicate_Wild_Do_Table	Replicate_Wild_Ignore_Table	Last_Errno	Last_Error	Skip_Counter	Exec_Master_Log_Pos	Relay_Log_Space	Until_Condition	Until_Log_File	Until_Log_Pos	Master_SSL_Allowed	Master_SSL_CA_File	Master_SSL_CA_Path	Master_SSL_Cert	Master_SSL_Cipher	Master_SSL_Key	Seconds_Behind_Master
Variable_name	Value
Tables_in_test (foo)	table_type
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` (
  `id` char(16) NOT NULL default '',
  `data` int(11) NOT NULL default '0'
) 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
id	char(16)				
data	int(11)			0	
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
File	Position	Binlog_Do_DB	Binlog_Ignore_DB
1625
master-bin.000001	22451		
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 1654 1655 1656 1657
Database	Table	In_use	Name_locked
Privilege	Context	Comment
Alter	Tables	To alter the table
Create	Databases,Tables,Indexes	To create new databases and tables
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
File	File access on server	To read and write files on the server
Grant option	Databases,Tables	To give to other users those privileges you possess
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
Server_id	Host	Port	Rpl_recovery_rank	Master_id
Slave_IO_State	Master_Host	Master_User	Master_Port	Connect_Retry	Master_Log_File	Read_Master_Log_Pos	Relay_Log_File	Relay_Log_Pos	Relay_Master_Log_File	Slave_IO_Running	Slave_SQL_Running	Replicate_Do_DB	Replicate_Ignore_DB	Replicate_Do_Table	Replicate_Ignore_Table	Replicate_Wild_Do_Table	Replicate_Wild_Ignore_Table	Last_Errno	Last_Error	Skip_Counter	Exec_Master_Log_Pos	Relay_Log_Space	Until_Condition	Until_Log_File	Until_Log_Pos	Master_SSL_Allowed	Master_SSL_CA_File	Master_SSL_CA_Path	Master_SSL_Cert	Master_SSL_Cipher	Master_SSL_Key	Seconds_Behind_Master
Variable_name	Value
Tables_in_test (foo)	table_type
Variable_name	Value
Level	Code	Message
drop procedure bug4902|
1658 1659 1660 1661 1662 1663
create procedure bug4902_2()
begin
show processlist;
end|
call bug4902_2()|
Id	User	Host	db	Command	Time	State	Info
1664
#	root	localhost	test	Query	#	NULL	call bug4902_2()
1665 1666
call bug4902_2()|
Id	User	Host	db	Command	Time	State	Info
1667
#	root	localhost	test	Query	#	NULL	call bug4902_2()
1668
drop procedure bug4902_2|
1669 1670 1671 1672 1673 1674 1675 1676
drop table if exists t3|
create procedure bug4904()
begin
declare continue handler for sqlstate 'HY000' begin end;
create table t2 as select * from t;
end|
call bug4904()|
drop procedure bug4904|
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
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|
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|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1707 1708
drop table if exists fac|
create table fac (n int unsigned not null primary key, f bigint unsigned)|
1709 1710
create procedure ifac(n int unsigned)
begin
1711
declare i int unsigned default 1;
1712 1713 1714 1715 1716 1717 1718 1719 1720
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;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1721 1722 1723
end|
call ifac(20)|
select * from fac|
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
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
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1745 1746
drop table fac|
show function status like '%f%'|
1747 1748
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	
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1749 1750 1751
drop procedure ifac|
drop function fac|
show function status like '%f%'|
1752
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1753
drop table if exists primes|
1754 1755 1756
create table primes (
i int unsigned not null primary key,
p bigint unsigned not null
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1757
)|
1758 1759 1760 1761 1762 1763 1764 1765 1766
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),
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1767
(40, 181), (41, 191), (42, 193), (43, 197), (44, 199)|
1768 1769 1770
create procedure opp(n bigint unsigned, out pp bool)
begin
declare r double;
1771
declare b, s bigint unsigned default 0;
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
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;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1792
end loop;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1793
end|
1794 1795 1796 1797 1798 1799 1800
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
1801
declare pp bool default 0;
1802 1803 1804 1805 1806 1807 1808 1809
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;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1810 1811
end|
show create procedure opp|
1812 1813
Procedure	sql_mode	Create Procedure
opp		CREATE PROCEDURE `test`.`opp`(n bigint unsigned, out pp bool)
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
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
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1839
show procedure status like '%p%'|
1840 1841 1842
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	
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1843 1844
call ip(200)|
select * from primes where i=45 or i=100 or i=199|
1845 1846 1847 1848
i	p
45	211
100	557
199	1229
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1849 1850 1851 1852
drop table primes|
drop procedure opp|
drop procedure ip|
show procedure status like '%p%'|
1853
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1854 1855 1856
drop table if exists fib|
create table fib ( f bigint unsigned not null )|
insert into fib values (1), (1)|
1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
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;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1871 1872 1873
end|
call fib(20)|
select * from fib order by f asc|
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896
f
1
1
2
3
5
8
13
21
34
55
89
144
233
377
610
987
1597
2584
4181
6765
10946
17711
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1897 1898
drop table fib|
drop procedure fib|
1899
create procedure bar(x char(16), y int)
1900
comment "111111111111" sql security invoker
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1901 1902
insert into test.t1 values (x, y)|
show procedure status like 'bar'|
1903 1904
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
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1905 1906 1907 1908
alter procedure bar name bar2 comment "2222222222" sql security definer|
alter procedure bar2 name bar comment "3333333333"|
alter procedure bar|
show create procedure bar|
1909 1910
Procedure	sql_mode	Create Procedure
bar		CREATE PROCEDURE `test`.`bar`(x char(16), y int)
1911
    COMMENT '3333333333'
1912
insert into test.t1 values (x, y)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1913
show procedure status like 'bar'|
1914 1915
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
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1916
drop procedure bar|
1917
drop table t1;
1918
drop table t2;
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928
create procedure p1 () select (select s1 from t1) from t1;
create table t1 (s1 int);
call p1();
(select s1 from t1)
insert into t1 values (1);
call p1();
(select s1 from t1)
1
drop procedure p1;
drop table t1;