sp.result 70.8 KB
Newer Older
1
use test;
2
drop table if exists t1,t2,t3,t4;
3
create table t1 (
4
id   char(16) not null default '',
5 6
data int not null
);
7
create table t2 (
8 9 10
s   char(16),
i   int,
d   double
11
);
12
drop procedure if exists foo42;
13 14
create procedure foo42()
insert into test.t1 values ("foo", 42);
15 16 17 18 19 20
call foo42();
select * from t1;
id	data
foo	42
delete from t1;
drop procedure foo42;
21
drop procedure if exists bar;
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;
29
drop procedure if exists empty|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
30 31
create procedure empty()
begin
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
32 33 34
end|
call empty()|
drop procedure empty|
35
drop procedure if exists scope|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
36 37 38 39 40 41 42
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
43 44
end|
drop procedure scope|
45
drop procedure if exists two|
46 47 48 49
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
50 51 52
end|
call two("one", "two", 3)|
select * from t1|
53 54 55
id	data
one	3
two	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
56 57
delete from t1|
drop procedure two|
58
drop procedure if exists locset|
59 60 61 62 63 64
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
65 66 67
end|
call locset("locset", 19)|
select * from t1|
68 69
id	data
locset	21
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
70 71
delete from t1|
drop procedure locset|
72
drop procedure if exists setcontext|
73 74 75 76 77 78 79 80 81 82 83 84 85 86
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
87
create table t3 ( d date, i int, f double, s varchar(32) )|
88
drop procedure if exists nullset|
89 90 91 92 93 94 95 96
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);
97 98 99 100 101 102
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
103 104 105
end|
call nullset()|
select * from t3|
106 107
d	i	f	s
NULL	NULL	NULL	NULL
108 109 110 111 112 113
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
114 115
drop table t3|
drop procedure nullset|
116
drop procedure if exists mixset|
117 118 119 120 121
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
122 123 124
end|
call mixset("mixset", 19)|
show variables like 'max_join_size'|
125 126
Variable_name	Value
max_join_size	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
127
select id,data,@z from t1|
128 129
id	data	@z
mixset	666	19
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
130 131
delete from t1|
drop procedure mixset|
132
drop procedure if exists zip|
133 134 135 136 137
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
138
end|
139
drop procedure if exists zap|
140 141 142 143
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
144 145 146
end|
call zip("zip", 99)|
select * from t1|
147 148
id	data
zip	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
149 150 151 152 153
delete from t1|
drop procedure zip|
drop procedure bar|
call zap(7, @zap)|
select @zap|
154 155
@zap
8
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
156
drop procedure zap|
157
drop procedure if exists c1|
158
create procedure c1(x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
159
call c2("c", x)|
160
drop procedure if exists c2|
161
create procedure c2(s char(16), x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
162
call c3(x, s)|
163
drop procedure if exists c3|
164
create procedure c3(x int, s char(16))
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
165
call c4("level", x, s)|
166
drop procedure if exists c4|
167
create procedure c4(l char(8), x int, s char(16))
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
168 169 170
insert into t1 values (concat(l,s), x)|
call c1(42)|
select * from t1|
171 172
id	data
levelc	42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
173 174 175 176 177
delete from t1|
drop procedure c1|
drop procedure c2|
drop procedure c3|
drop procedure c4|
178
drop procedure if exists iotest|
179 180 181 182
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
183
end|
184
drop procedure if exists inc2|
185 186 187 188
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
189
end|
190
drop procedure if exists inc|
191
create procedure inc(inout io int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
192 193 194
set io = io + 1|
call iotest("io1", "io2", 1)|
select * from t1|
195 196 197
id	data
io2	2
io1	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
198 199 200
delete from t1|
drop procedure iotest|
drop procedure inc2|
201
drop procedure if exists incr|
202
create procedure incr(inout x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
203 204
call inc(x)|
select @zap|
205 206
@zap
8
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
207 208
call incr(@zap)|
select @zap|
209 210
@zap
9
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
211 212
drop procedure inc|
drop procedure incr|
213
drop procedure if exists cbv1|
214 215
create procedure cbv1()
begin
216
declare y int default 3;
217 218
call cbv2(y+1, y);
insert into test.t1 values ("cbv1", y);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
219
end|
220
drop procedure if exists cbv2|
221 222 223 224
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
225 226 227
end|
call cbv1()|
select * from t1|
228 229 230
id	data
cbv2	4
cbv1	4711
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
231 232 233 234
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)|
235
drop procedure if exists sub1|
pem@mysql.com's avatar
pem@mysql.com committed
236
create procedure sub1(id char(16), x int)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
237
insert into test.t1 values (id, x)|
238 239 240 241 242 243 244
drop procedure if exists sub2|
create procedure sub2(id char(16))
begin
declare x int;
set x = (select sum(t.i) from test.t2 t);
insert into test.t1 values (id, x);
end|
245
drop procedure if exists sub3|
pem@mysql.com's avatar
pem@mysql.com committed
246
create function sub3(i int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
247 248 249 250 251
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))|
252
call sub2("sub2")|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
253
select * from t1|
pem@mysql.com's avatar
pem@mysql.com committed
254 255 256 257 258
id	data
sub1a	7
sub1b	3
sub1c	1
sub1d	1
259
sub2	6
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
260
select sub3((select max(i) from t2))|
pem@mysql.com's avatar
pem@mysql.com committed
261 262
sub3((select max(i) from t2))
4
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
263
drop procedure sub1|
264
drop procedure sub2|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
265
drop function sub3|
266
delete from t1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
267
delete from t2|
268
drop procedure if exists a0|
269 270 271 272
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
273 274 275
end while|
call a0(3)|
select * from t1|
276 277 278 279
id	data
a0	2
a0	1
a0	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
280 281
delete from t1|
drop procedure a0|
282
drop procedure if exists a|
283 284 285 286
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
287 288 289
end while|
call a(3)|
select * from t1|
290 291 292 293
id	data
a	2
a	1
a	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
294 295
delete from t1|
drop procedure a|
296
drop procedure if exists b|
297
create procedure b(x int)
298 299
repeat
insert into test.t1 values (repeat("b",3), x);
300
set x = x-1;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
301 302 303
until x = 0 end repeat|
call b(3)|
select * from t1|
304 305 306 307
id	data
bbb	3
bbb	2
bbb	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
308 309
delete from t1|
drop procedure b|
310
drop procedure if exists b2|
311 312 313 314
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
315 316
until x = 0 end repeat|
drop procedure b2|
317
drop procedure if exists c|
318 319 320 321 322 323
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
324 325 326
end while hmm|
call c(3)|
select * from t1|
327 328 329 330
id	data
c	3
c	2
c	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
331 332
delete from t1|
drop procedure c|
333
drop procedure if exists d|
334 335 336 337 338 339
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
340 341 342
end while|
call d(3)|
select * from t1|
343 344
id	data
d	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
345 346
delete from t1|
drop procedure d|
347
drop procedure if exists e|
348 349 350 351 352 353 354
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
355 356 357
end loop foo|
call e(3)|
select * from t1|
358 359 360 361
id	data
e	3
e	2
e	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
362 363
delete from t1|
drop procedure e|
364
drop procedure if exists f|
365 366 367 368 369 370 371
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
372 373 374 375 376
end if|
call f(-2)|
call f(0)|
call f(4)|
select * from t1|
377 378 379 380
id	data
f	0
f	1
f	2
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
381 382
delete from t1|
drop procedure f|
383
drop procedure if exists g|
384 385 386 387 388 389 390 391
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
392 393 394 395 396
end case|
call g(-42)|
call g(0)|
call g(1)|
select * from t1|
397 398 399 400
id	data
g	0
g	1
g	2
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
401 402
delete from t1|
drop procedure g|
403
drop procedure if exists h|
404 405 406 407 408 409 410 411
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
412 413 414 415 416
end case|
call h(0)|
call h(1)|
call h(17)|
select * from t1|
417 418 419 420
id	data
h0	0
h1	1
h?	17
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
421 422
delete from t1|
drop procedure h|
423
drop procedure if exists i|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
424 425 426 427 428 429 430
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
431 432 433 434
end foo|
call i(0)|
call i(3)|
select * from t1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
435 436
id	data
i	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
437 438 439 440
delete from t1|
drop procedure i|
insert into t1 values ("foo", 3), ("bar", 19)|
insert into t2 values ("x", 9, 4.1), ("y", -1, 19.2), ("z", 3, 2.2)|
441
drop procedure if exists sel1|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
442 443 444 445 446 447 448 449 450
create procedure sel1()
begin
select * from t1;
end|
call sel1()|
id	data
foo	3
bar	19
drop procedure sel1|
451
drop procedure if exists sel2|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
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|
468
drop procedure if exists into_test|
469 470 471 472 473
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
474 475 476
end|
call into_test("into", 100)|
select * from t1|
477
id	data
478 479
into	100
into2	102
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
480 481
delete from t1|
drop procedure into_test|
482
drop procedure if exists into_tes2|
483 484 485 486 487
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
488 489 490
end|
call into_test2("into", 100)|
select id,data,@z from t1|
491 492 493
id	data	@z
into	100	100
into2	102	100
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
494 495
delete from t1|
drop procedure into_test2|
496
drop procedure if exists into_test3|
497 498 499 500 501 502
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
503 504 505 506 507
end|
insert into t1 values ("into3", 19)|
call into_test3()|
call into_test3()|
select * from t2|
508 509 510
s	i	d
into3	19	0
into3	19	0
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
511 512 513
delete from t1|
delete from t2|
drop procedure into_test3|
514
drop procedure if exists into_test4|
515 516 517 518 519
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
520 521 522 523
end|
delete from t1|
create table t3 ( s char(16), d int)|
call into_test4()|
524 525
Warnings:
Warning	1329	No data to FETCH
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
526
select * from t3|
527 528
s	d
into4	NULL
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
529 530 531
insert into t1 values ("i4", 77)|
call into_test4()|
select * from t3|
532 533 534
s	d
into4	NULL
into4	77
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
535 536 537
delete from t1|
drop table t3|
drop procedure into_test4|
538
drop procedure if exists into_outfile|
539 540 541 542 543
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
544 545 546 547
end|
call into_outfile("ofile", 1)|
delete from t1|
drop procedure into_outfile|
548
drop procedure if exists into_dumpfile|
549 550 551 552 553
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
554 555 556 557
end|
call into_dumpfile("dfile", 1)|
delete from t1|
drop procedure into_dumpfile|
558
drop procedure if exists create_select|
559 560 561
create procedure create_select(x char(16), y int)
begin
insert into test.t1 values (x, y);
562
create temporary table test.t3 select * from test.t1;
pem@mysql.com's avatar
pem@mysql.com committed
563
insert into test.t3 values (concat(x, "2"), y+2);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
564 565 566
end|
call create_select("cs", 90)|
select * from t1, t3|
pem@mysql.com's avatar
pem@mysql.com committed
567 568 569
id	data	id	data
cs	90	cs	90
cs	90	cs2	92
570
drop table t3|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
571 572
delete from t1|
drop procedure create_select|
573
drop function if exists e|
574
create function e() returns double
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
575 576 577
return 2.7182818284590452354|
set @e = e()|
select e(), @e|
578 579
e()	@e
2.718281828459	2.718281828459
580
drop function if exists inc|
581
create function inc(i int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
582 583
return i+1|
select inc(1), inc(99), inc(-71)|
584 585
inc(1)	inc(99)	inc(-71)
2	100	-70
586
drop function if exists mul|
587
create function mul(x int, y int) returns int
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
588 589
return x*y|
select mul(1,1), mul(3,5), mul(4711, 666)|
590 591
mul(1,1)	mul(3,5)	mul(4711, 666)
1	15	3137526
592
drop function if exists append|
593
create function append(s1 char(8), s2 char(8)) returns char(16)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
594 595
return concat(s1, s2)|
select append("foo", "bar")|
596 597
append("foo", "bar")
foobar
598
drop function if exists fac|
599 600
create function fac(n int unsigned) returns bigint unsigned
begin
601
declare f bigint unsigned default 1;
602 603 604 605 606
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
607 608
end|
select fac(1), fac(2), fac(5), fac(10)|
609 610
fac(1)	fac(2)	fac(5)	fac(10)
1	2	120	3628800
611
drop function if exists fun|
612
create function fun(d double, i int, u int unsigned) returns double
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
613 614
return mul(inc(i), fac(u)) / e()|
select fun(2.3, 3, 5)|
615 616
fun(2.3, 3, 5)
176.58213176229
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
617 618 619
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")|
620 621
s	i	d
ab	24	1324.36598821719
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
622
select * from t2 where i = mul(4,3) or i = mul(mul(3,4),2)|
623 624 625
s	i	d
xxxyyy	12	2.71828182845905
ab	24	1324.36598821719
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
626
select * from t2 where d = e()|
627 628
s	i	d
xxxyyy	12	2.71828182845905
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
629
select * from t2|
630 631 632
s	i	d
xxxyyy	12	2.71828182845905
ab	24	1324.36598821719
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
633 634 635 636 637 638
delete from t2|
drop function e|
drop function inc|
drop function mul|
drop function append|
drop function fun|
639
drop procedure if exists hndlr1|
640 641 642
create procedure hndlr1(val int)
begin
declare x int default 0;
643
declare foo condition for 1136;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
644 645
declare bar condition for sqlstate '42S98';        # Just for testing syntax
declare zip condition for sqlstate value '42S99';  # Just for testing syntax
646
declare continue handler for foo set x = 1;
647
insert into test.t1 values ("hndlr1", val, 2);  # Too many values
648 649 650
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
651 652 653
end|
call hndlr1(42)|
select * from t1|
654 655
id	data
hndlr1	42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
656 657
delete from t1|
drop procedure hndlr1|
658
drop procedure if exists hndlr2|
659 660 661 662
create procedure hndlr2(val int)
begin
declare x int default 0;
begin
663 664
declare exit handler for sqlstate '21S01' set x = 1;
insert into test.t1 values ("hndlr2", val, 2); # Too many values
665 666
end;
insert into test.t1 values ("hndlr2", x);
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
667 668 669
end|
call hndlr2(42)|
select * from t1|
670 671
id	data
hndlr2	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
672 673
delete from t1|
drop procedure hndlr2|
674
drop procedure if exists hndlr3|
675 676 677 678 679 680 681 682 683 684 685 686 687
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;
688
insert into test.t1 values ("hndlr3", y, 2);  # Too many values
689 690 691 692 693
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
694 695 696
end|
call hndlr3(3)|
select * from t1|
697 698
id	data
hndlr3	13
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
699 700 701
delete from t1|
drop procedure hndlr3|
create table t3 ( id   char(16), data int )|
702
drop procedure if exists hndlr4|
703 704 705 706
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
707
declare continue handler for sqlstate '02000' set x=1;
708 709
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
710 711 712
end|
call hndlr4()|
select * from t3|
713
id	data
714
z	NULL
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
715 716
drop table t3|
drop procedure hndlr4|
717
drop procedure if exists cur1|
718 719 720 721 722
create procedure cur1()
begin
declare a char(16);
declare b int;
declare c double;
723 724 725
declare done int default 0;
declare c cursor for select * from test.t2;
declare continue handler for sqlstate '02000' set done = 1;
726 727 728 729 730 731 732 733
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
734 735 736 737
end|
insert into t2 values ("foo", 42, -1.9), ("bar", 3, 12.1), ("zap", 666, -3.14)|
call cur1()|
select * from t1|
738 739 740 741
id	data
foo	40
bar	15
zap	663
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
742 743
drop procedure cur1|
create table t3 ( s char(16), i int )|
744
drop procedure if exists cur2|
745 746 747 748 749
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;
750
declare continue handler for sqlstate '02000' set done = 1;
751 752 753 754 755 756
open c1;
open c2;
repeat
begin
declare a char(16);
declare b,c int;
757 758
fetch from c1 into a, b;
fetch next from c2 into c;
759 760 761 762 763 764 765 766 767 768 769
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
770 771 772
end|
call cur2()|
select * from t3|
773 774 775 776
s	i
foo	40
bar	3
zap	663
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
777 778 779 780
delete from t1|
delete from t2|
drop table t3|
drop procedure cur2|
781
drop procedure if exists chistics|
782 783
create procedure chistics()
language sql
784
modifies sql data
785 786 787
not deterministic
sql security definer
comment 'Characteristics procedure test'
788 789 790
  insert into t1 values ("chistics", 1)|
show create procedure chistics|
Procedure	sql_mode	Create Procedure
791
chistics		CREATE PROCEDURE `chistics`()
792 793 794
    MODIFIES SQL DATA
    COMMENT 'Characteristics procedure test'
insert into t1 values ("chistics", 1)
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
795 796
call chistics()|
select * from t1|
797 798
id	data
chistics	1
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
799
delete from t1|
800 801
alter procedure chistics sql security invoker|
show create procedure chistics|
802
Procedure	sql_mode	Create Procedure
803
chistics		CREATE PROCEDURE `chistics`()
804
    MODIFIES SQL DATA
805 806 807
    SQL SECURITY INVOKER
    COMMENT 'Characteristics procedure test'
insert into t1 values ("chistics", 1)
808
drop procedure chistics|
809
drop function if exists chistics|
810 811 812 813 814
create function chistics() returns int
language sql
deterministic
sql security invoker
comment 'Characteristics procedure test'
815 816 817
  return 42|
show create function chistics|
Function	sql_mode	Create Function
818
chistics		CREATE FUNCTION `chistics`() RETURNS int(11)
819 820 821 822
    DETERMINISTIC
    SQL SECURITY INVOKER
    COMMENT 'Characteristics procedure test'
return 42
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
823
select chistics()|
824 825
chistics()
42
826
alter function chistics
827 828
no sql
comment 'Characteristics function test'|
829
show create function chistics|
830
Function	sql_mode	Create Function
831
chistics		CREATE FUNCTION `chistics`() RETURNS int(11)
832
    NO SQL
833 834 835 836
    DETERMINISTIC
    SQL SECURITY INVOKER
    COMMENT 'Characteristics function test'
return 42
837
drop function chistics|
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
838 839
insert into t1 values ("foo", 1), ("bar", 2), ("zip", 3)|
set @@sql_mode = 'ANSI'|
840
drop procedure if exists modes$
841 842 843 844 845
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;
846
declare continue handler for sqlstate '02000' set done = 1;
847 848 849 850 851 852 853 854 855 856
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
857 858 859 860 861 862
end$
set @@sql_mode = ''|
set sql_select_limit = 1|
call modes(@c1, @c2)|
set sql_select_limit = default|
select @c1, @c2|
863 864
@c1	@c2
12	3
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
865 866
delete from t1|
drop procedure modes|
867 868 869 870 871 872 873 874 875 876
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|
877
drop procedure if exists dummy|
878 879 880 881 882 883
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
884
drop procedure if exists rc|
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
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
906 907 908 909 910
select * from t1|
id	data
select row_count()|
row_count()
-1
911
drop procedure rc|
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
drop function if exists f0|
drop function if exists f1|
drop function if exists f2|
drop function if exists f3|
drop function if exists f4|
drop function if exists f5|
drop function if exists f6|
drop function if exists f7|
drop function if exists f8|
drop view if exists v0|
drop view if exists v1|
drop view if exists v2|
delete from t1|
delete from t2|
insert into t1 values ("a", 1), ("b", 2) |
insert into t2 values ("a", 1, 1.0), ("b", 2, 2.0), ("c", 3, 3.0) |
create function f1() returns int
return (select sum(data) from t1)|
select f1()|
f1()
3
select id, f1() from t1|
id	f1()
a	3
b	3
create function f2() returns int
return (select data from t1 where data <= (select sum(data) from t1) limit 1)|
select f2()|
f2()
1
select id, f2() from t1|
id	f2()
a	1
b	1
create function f3() returns int
begin
declare n int;
declare m int;
set n:= (select min(data) from t1);
set m:= (select max(data) from t1);
return n < m;
end|
select f3()|
f3()
1
select id, f3() from t1|
id	f3()
a	1
b	1
select f1(), f3()|
f1()	f3()
3	1
select id, f1(), f3() from t1|
id	f1()	f3()
a	3	1
b	3	1
create function f4() returns double 
return (select d from t1, t2 where t1.data = t2.i and t1.id= "b")|
select f4()|
f4()
2
select s, f4() from t2|
s	f4()
a	2
b	2
c	2
create function f5(i int) returns int
begin
if i <= 0 then
return 0;
elseif i = 1  then
return (select count(*) from t1 where data = i);
else
return (select count(*) + f5( i - 1) from t1 where data = i);
end if;
end|
select f5(1)|
f5(1)
1
create function f6() returns int
begin
declare n int;
set n:= f1();
return (select count(*) from t1 where data <= f7() and data <= n);
end|
create function f7() returns int
return (select sum(data) from t1 where data <= f1())|
select f6()|
f6()
2
select id, f6() from t1|
id	f6()
a	2
b	2
create view v1 (a) as select f1()|
select * from v1|
a
3
select id, a from t1, v1|
id	a
a	3
b	3
select * from v1, v1 as v|
a	a
3	3
create view v2 (a) as select a*10 from v1|
select * from v2|
a
30
select id, a from t1, v2|
id	a
a	30
b	30
select * from v1, v2|
a	a
3	30
create function f8 () returns int
return (select count(*) from v2)|
select *, f8() from v1|
a	f8()
3	1
drop function f1|
select * from v1|
ERROR HY000: View 'test.v1' references invalid table(s) or column(s) or function(s)
create function f1() returns int
return (select sum(data) from t1) + (select sum(data) from v1)|
drop function f1|
create function f1() returns int
return (select sum(data) from t1)|
create function f0() returns int
return (select * from (select 100) as r)|
select f0()|
f0()
100
select *, f0() from (select 1) as t|
1	f0()
1	100
create view v0 as select f0()|
select * from v0|
f0()
100
select *, f0() from v0|
f0()	f0()
100	100
lock tables t1 read, t1 as t11 read, mysql.proc read|
select f3()|
f3()
1
select id, f3() from t1 as t11|
id	f3()
a	1
b	1
select f0()|
f0()
100
select * from v0|
f0()
100
select *, f0() from v0, (select 123) as d1|
f0()	123	f0()
100	123	100
select id, f3() from t1|
ERROR HY000: Table 't1' was not locked with LOCK TABLES
select f4()|
ERROR HY000: Table 't2' was not locked with LOCK TABLES
unlock tables|
lock tables v2 read, mysql.proc read|
select * from v2|
a
30
select * from v1|
a
3
1085
select * from v1, t1|
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
ERROR HY000: Table 't1' was not locked with LOCK TABLES
select f4()|
ERROR HY000: Table 't2' was not locked with LOCK TABLES
unlock tables|
drop function f0|
drop function f1|
drop function f2|
drop function f3|
drop function f4|
drop function f5|
drop function f6|
drop function f7|
drop function f8|
drop view v0|
drop view v1|
drop view v2|
delete from t1 |
delete from t2 |
1104 1105 1106 1107
drop table if exists fac|
create table fac (n int unsigned not null primary key, f bigint unsigned)|
drop procedure if exists ifac|
create procedure ifac(n int unsigned)
1108
begin
1109 1110 1111
declare i int unsigned default 1;
if n > 20 then
set n = 20;		# bigint overflow otherwise
1112
end if;
1113
while i <= n do
1114
begin
1115 1116 1117 1118
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
1119
end|
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
call ifac(20)|
select * from fac|
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
drop table fac|
show function status like '%f%'|
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	
drop procedure ifac|
drop function fac|
show function status like '%f%'|
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
drop table if exists primes|
create table primes (
i int unsigned not null primary key,
p bigint unsigned not null
)|
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),
(40, 181), (41, 191), (42, 193), (43, 197), (44, 199)|
drop procedure if exists opp|
create procedure opp(n bigint unsigned, out pp bool)
1168
begin
1169 1170 1171 1172 1173 1174 1175
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;
1176
else
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
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;
1190
end if;
1191
end loop;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
1192
end|
1193 1194
drop procedure if exists ip|
create procedure ip(m int unsigned)
1195
begin
1196 1197 1198 1199
declare p bigint unsigned;
declare i int unsigned;
set i=45, p=201;
while i < m do
1200
begin
1201 1202 1203 1204 1205 1206 1207 1208 1209
declare pp bool default 0;
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
1210
end|
1211 1212
show create procedure opp|
Procedure	sql_mode	Create Procedure
1213
opp		CREATE PROCEDURE `opp`(n bigint unsigned, out pp bool)
1214
begin
1215 1216 1217 1218 1219 1220 1221 1222
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
1223
begin
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
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
show procedure status like '%p%'|
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	
call ip(200)|
select * from primes where i=45 or i=100 or i=199|
i	p
45	211
100	557
199	1229
drop table primes|
drop procedure opp|
drop procedure ip|
show procedure status like '%p%'|
Db	Name	Type	Definer	Modified	Created	Security_type	Comment
drop procedure if exists bar|
create procedure bar(x char(16), y int)
comment "111111111111" sql security invoker
insert into test.t1 values (x, y)|
show procedure status like 'bar'|
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
alter procedure bar comment "2222222222" sql security definer|
alter procedure bar comment "3333333333"|
alter procedure bar|
show create procedure bar|
Procedure	sql_mode	Create Procedure
1266
bar		CREATE PROCEDURE `bar`(x char(16), y int)
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
    COMMENT '3333333333'
insert into test.t1 values (x, y)
show procedure status like 'bar'|
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
drop procedure bar|
drop procedure if exists p1|
create procedure p1 ()
select (select s1 from t3) from t3|
create table t3 (s1 int)|
call p1()|
(select s1 from t3)
insert into t3 values (1)|
call p1()|
(select s1 from t3)
1
drop procedure p1|
drop table t3|
drop function if exists foo|
create function `foo` () returns int
return 5|
select `foo` ()|
`foo` ()
5
drop function `foo`|
drop function if exists t1max|
Warnings:
Note	1305	FUNCTION t1max does not exist
create function t1max() returns int
1296
begin
1297 1298 1299
declare x int;
select max(data) into x from t1;
return x;
1300
end|
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
insert into t1 values ("foo", 3), ("bar", 2), ("zip", 5), ("zap", 1)|
select t1max()|
t1max()
5
drop function t1max|
create table t3 (
v char(16) not null primary key,
c int unsigned not null
)|
create function getcount(s char(16)) returns int
1311
begin
1312 1313 1314 1315 1316 1317 1318 1319
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;
1320
end|
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
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")
1332 1333
1
select * from t3|
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
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
1348
drop table t3|
1349 1350 1351 1352 1353 1354 1355 1356
drop function getcount|
drop procedure if exists bug822|
create procedure bug822(a_id char(16), a_data int)
begin
declare n int;
select count(*) into n from t1 where id = a_id and data = a_data;
if n = 0 then
insert into t1 (id, data) values (a_id, a_data);
1357 1358
end if;
end|
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 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 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 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 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
delete from t1|
call bug822('foo', 42)|
call bug822('foo', 42)|
call bug822('bar', 666)|
select * from t1|
id	data
foo	42
bar	666
delete from t1|
drop procedure bug822|
drop procedure if exists bug1495|
create procedure bug1495()
begin
declare x int;
select data into x from t1 order by id limit 1;
if x > 10 then
insert into t1 values ("less", x-10);
else
insert into t1 values ("more", x+10);
end if;
end|
insert into t1 values ('foo', 12)|
call bug1495()|
delete from t1 where id='foo'|
insert into t1 values ('bar', 7)|
call bug1495()|
delete from t1 where id='bar'|
select * from t1|
id	data
less	2
more	17
delete from t1|
drop procedure bug1495|
drop procedure if exists bug1547|
create procedure bug1547(s char(16))
begin
declare x int;
select data into x from t1 where s = id limit 1;
if x > 10 then
insert into t1 values ("less", x-10);
else
insert into t1 values ("more", x+10);
end if;
end|
insert into t1 values ("foo", 12), ("bar", 7)|
call bug1547("foo")|
call bug1547("bar")|
select * from t1|
id	data
foo	12
bar	7
less	2
more	17
delete from t1|
drop procedure bug1547|
drop table if exists t70|
create table t70 (s1 int,s2 int)|
insert into t70 values (1,2)|
drop procedure if exists bug1656|
create procedure bug1656(out p1 int, out p2 int)
select * into p1, p1 from t70|
call bug1656(@1, @2)|
select @1, @2|
@1	@2
2	NULL
drop table t70|
drop procedure bug1656|
create table t3(a int)|
drop procedure if exists bug1862|
create procedure bug1862()
begin
insert into t3 values(2);    
flush tables;
end|
call bug1862()|
call bug1862()|
select * from t3|
a
2
2
drop table t3|
drop procedure bug1862|
drop procedure if exists bug1874|
create procedure bug1874()
begin
declare x int;
declare y double;
select max(data) into x from t1;
insert into t2 values ("max", x, 0);
select min(data) into x from t1;
insert into t2 values ("min", x, 0);
select sum(data) into x from t1;
insert into t2 values ("sum", x, 0);
select avg(data) into y from t1;
insert into t2 values ("avg", 0, y);
end|
insert into t1 (data) values (3), (1), (5), (9), (4)|
call bug1874()|
select * from t2|
s	i	d
max	9	0
min	1	0
sum	22	0
avg	0	4.4
delete from t1|
delete from t2|
drop procedure bug1874|
drop procedure if exists bug2260|
create procedure bug2260()
begin
declare v1 int;
declare c1 cursor for select data from t1;
declare continue handler for not found set @x2 = 1;
open c1;
fetch c1 into v1;
set @x2 = 2;
close c1;
end|
call bug2260()|
select @x2|
@x2
2
drop procedure bug2260|
drop procedure if exists bug2227|
create procedure bug2227(x int)
begin
declare y float default 2.6;
declare z char(16) default "zzz";
select 1.3, x, y, 42, z;
end|
call bug2227(9)|
1.3	x	y	42	z
1.3	9	2.6	42	zzz
drop procedure bug2227|
drop function if exists bug2674|
create function bug2674() returns int
return @@sort_buffer_size|
set @osbs = @@sort_buffer_size|
set @@sort_buffer_size = 262000|
select bug2674()|
bug2674()
262000
drop function bug2674|
set @@sort_buffer_size = @osbs|
drop procedure if exists bug3259_1 |
create procedure bug3259_1 () begin end|
drop procedure if exists BUG3259_2 |
create procedure BUG3259_2 () begin end|
drop procedure if exists Bug3259_3 |
create procedure Bug3259_3 () begin end|
call BUG3259_1()|
call BUG3259_1()|
call bug3259_2()|
call Bug3259_2()|
call bug3259_3()|
call bUG3259_3()|
drop procedure bUg3259_1|
drop procedure BuG3259_2|
drop procedure BUG3259_3|
drop function if exists bug2772|
create function bug2772() returns char(10) character set latin2
return 'a'|
select bug2772()|
bug2772()
a
drop function bug2772|
drop procedure if exists bug2776_1|
create procedure bug2776_1(out x int)
begin
declare v int;
set v = default;
set x = v;
end|
drop procedure if exists bug2776_2|
create procedure bug2776_2(out x int)
begin
declare v int default 42;
set v = default;
set x = v;
end|
set @x = 1|
call bug2776_1(@x)|
select @x|
@x
NULL
call bug2776_2(@x)|
select @x|
@x
42
drop procedure bug2776_1|
drop procedure bug2776_2|
create table t3 (s1 smallint)|
insert into t3 values (123456789012)|
Warnings:
Warning	1264	Out of range value adjusted for column 's1' at row 1
drop procedure if exists bug2780|
create procedure bug2780()
begin
declare exit handler for sqlwarning set @x = 1; 
set @x = 0;
insert into t3 values (123456789012);
insert into t3 values (0);
end|
call bug2780()|
select @x|
@x
1
select * from t3|
s1
32767
32767
drop procedure bug2780|
drop table t3|
create table t3 (content varchar(10) )|
insert into t3 values ("test1")|
insert into t3 values ("test2")|
create table t4 (f1 int, rc int, t3 int)|
drop procedure if exists bug1863|
create procedure bug1863(in1 int)
begin 
declare ind int default 0;
declare t1 int;
declare t2 int;
declare t3 int;
declare rc int default 0;
declare continue handler for 1065 set rc = 1;
drop temporary table if exists temp_t1;
create temporary table temp_t1 (
f1 int auto_increment, f2 varchar(20), primary key (f1)
);
insert into temp_t1 (f2) select content from t3;
select f2 into t3 from temp_t1 where f1 = 10;
if (rc) then
insert into t4 values (1, rc, t3);
end if;
insert into t4 values (2, rc, t3);
end|
call bug1863(10)|
1597 1598 1599
Warnings:
Note	1051	Unknown table 'temp_t1'
Warning	1329	No data to FETCH
1600
call bug1863(10)|
1601 1602
Warnings:
Warning	1329	No data to FETCH
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
select * from t4|
f1	rc	t3
2	0	NULL
2	0	NULL
drop procedure bug1863|
drop temporary table temp_t1;
drop table t3, t4|
create table t3 ( 
OrderID  int not null,
MarketID int,
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
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")|
1625
drop procedure if exists bug2656_1|
1626 1627 1628 1629 1630 1631 1632
create procedure bug2656_1()
begin 
select
m.Market
from  t4 m JOIN t3 o 
ON o.MarketID != 1 and o.MarketID = m.MarketID;
end |
1633
drop procedure if exists bug2656_2|
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
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|
1658
drop procedure if exists bug3426|
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701
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|
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
1702
drop procedure if exists bug3448|
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
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|
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 ...')|
1729
drop procedure if exists bug3734 |
1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740
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|
1741
drop procedure if exists bug3863|
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757
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|
1758 1759 1760 1761 1762 1763 1764
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)
)|
1765
drop procedure if exists bug2460_1|
1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788
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
1789
drop procedure if exists bug2460_2|
1790 1791 1792
create procedure bug2460_2()
begin
drop table if exists t3;
1793
create temporary table t3 (s1 int);
1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
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|
1804
set @@sql_mode = ''|
1805
drop procedure if exists bug2564_1|
1806 1807 1808 1809
create procedure bug2564_1()
comment 'Joe''s procedure'
  insert into `t1` values ("foo", 1)|
set @@sql_mode = 'ANSI_QUOTES'|
1810
drop procedure if exists bug2564_2|
1811 1812 1813
create procedure bug2564_2()
insert into "t1" values ('foo', 1)|
set @@sql_mode = ''$
1814
drop function if exists bug2564_3$
1815 1816 1817
create function bug2564_3(x int, y int) returns int
return x || y$
set @@sql_mode = 'ANSI'$
1818
drop function if exists bug2564_4$
1819 1820 1821 1822 1823
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
1824
bug2564_1		CREATE PROCEDURE `bug2564_1`()
1825 1826 1827 1828
    COMMENT 'Joe''s procedure'
insert into `t1` values ("foo", 1)
show create procedure bug2564_2|
Procedure	sql_mode	Create Procedure
1829
bug2564_2	ANSI_QUOTES	CREATE PROCEDURE "bug2564_2"()
1830 1831 1832
insert into "t1" values ('foo', 1)
show create function bug2564_3|
Function	sql_mode	Create Function
1833
bug2564_3		CREATE FUNCTION `bug2564_3`(x int, y int) RETURNS int(11)
1834 1835 1836
return x || y
show create function bug2564_4|
Function	sql_mode	Create Function
1837
bug2564_4	REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI	CREATE FUNCTION "bug2564_4"(x int, y int) RETURNS int(11)
1838 1839 1840 1841 1842
return x || y
drop procedure bug2564_1|
drop procedure bug2564_2|
drop function bug2564_3|
drop function bug2564_4|
1843
drop function if exists bug3132|
1844 1845 1846 1847 1848 1849 1850
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|
1851
drop procedure if exists bug3843|
1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
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|
1864 1865
create table t3 ( s1 char(10) )|
insert into t3 values ('a'), ('b')|
1866
drop procedure if exists bug3368|
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
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|
1879 1880
create table t3 (f1 int, f2 int)|
insert into t3 values (1,1)|
1881
drop procedure if exists bug4579_1|
1882 1883 1884 1885 1886 1887 1888
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|
1889
drop procedure if exists bug4579_2|
1890 1891 1892 1893 1894
create procedure bug4579_2 ()
begin
end|
call bug4579_1()|
call bug4579_1()|
1895 1896
Warnings:
Warning	1329	No data to FETCH
1897
call bug4579_1()|
1898 1899
Warnings:
Warning	1329	No data to FETCH
1900 1901 1902
drop procedure bug4579_1|
drop procedure bug4579_2|
drop table t3|
1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
drop procedure if exists bug2773|
create function bug2773() returns int return null|
create table t3 as select bug2773()|
show create table t3|
Table	Create Table
t3	CREATE TABLE `t3` (
  `bug2773()` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t3|
drop function bug2773|
drop procedure if exists bug3788|
create function bug3788() returns date return cast("2005-03-04" as date)|
select bug3788()|
bug3788()
2005-03-04
drop function bug3788|
create function bug3788() returns binary(5) return 5|
select bug3788()|
bug3788()
5
drop function bug3788|
1924 1925
create table t3 (f1 int, f2 int, f3 int)|
insert into t3 values (1,1,1)|
1926
drop procedure if exists bug4726|
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
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|
1943
drop procedure if exists bug4902|
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
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` (
1971
  `id` char(16) NOT NULL default '',
1972
  `data` int(11) NOT NULL
1973 1974 1975 1976 1977 1978
) 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
1979 1980
id	char(16)	NO			
data	int(11)	NO			
1981 1982 1983 1984 1985 1986
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
1987
Alter routine	Functions,Procedures	To alter or drop stored functions/procedures
1988
Create	Databases,Tables,Indexes	To create new databases and tables
1989
Create routine	Functions,Procedures	To use CREATE FUNCTION/PROCEDURE
1990 1991
Create temporary tables	Databases	To use CREATE TEMPORARY TABLE
Create view	Tables	To create new views
1992
Create user	Server Admin	To create new users
1993 1994
Delete	Tables	To delete existing rows
Drop	Databases,Tables	To drop databases, tables, and views
1995
Execute	Functions,Procedures	To execute stored routines
1996
File	File access on server	To read and write files on the server
1997
Grant option	Databases,Tables,Functions,Procedures	To give to other users those privileges you possess
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
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
2014
Tables_in_test (foo)
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024
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` (
2025
  `id` char(16) NOT NULL default '',
2026
  `data` int(11) NOT NULL
2027 2028 2029 2030 2031 2032
) 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
2033 2034
id	char(16)	NO			
data	int(11)	NO			
2035 2036 2037 2038 2039 2040
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
2041
Alter routine	Functions,Procedures	To alter or drop stored functions/procedures
2042
Create	Databases,Tables,Indexes	To create new databases and tables
2043
Create routine	Functions,Procedures	To use CREATE FUNCTION/PROCEDURE
2044 2045
Create temporary tables	Databases	To use CREATE TEMPORARY TABLE
Create view	Tables	To create new views
2046
Create user	Server Admin	To create new users
2047 2048
Delete	Tables	To delete existing rows
Drop	Databases,Tables	To drop databases, tables, and views
2049
Execute	Functions,Procedures	To execute stored routines
2050
File	File access on server	To read and write files on the server
2051
Grant option	Databases,Tables,Functions,Procedures	To give to other users those privileges you possess
2052 2053 2054
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)
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073
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
Tables_in_test (foo)
Variable_name	Value
Level	Code	Message
drop procedure bug4902|
drop procedure if exists bug4902_2|
create procedure bug4902_2()
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2074
begin
2075
show processlist;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2076
end|
2077 2078 2079 2080 2081 2082 2083 2084 2085
call bug4902_2()|
Id	User	Host	db	Command	Time	State	Info
#	root	localhost	test	Query	#	NULL	show processlist
call bug4902_2()|
Id	User	Host	db	Command	Time	State	Info
#	root	localhost	test	Query	#	NULL	show processlist
drop procedure bug4902_2|
drop procedure if exists bug4904|
create procedure bug4904()
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2086
begin
2087 2088
declare continue handler for sqlstate 'HY000' begin end;
create table t2 as select * from t3;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2089
end|
2090 2091 2092 2093 2094 2095
call bug4904()|
ERROR 42S02: Table 'test.t3' doesn't exist
drop procedure bug4904|
create table t3 (s1 char character set latin1, s2 char character set latin2)|
drop procedure if exists bug4904|
create procedure bug4904 ()
2096
begin
2097 2098
declare continue handler for sqlstate 'HY000' begin end;
select s1 from t3 union select s2 from t3; 
2099
end|
2100 2101 2102 2103 2104
call bug4904()|
drop procedure bug4904|
drop table t3|
drop procedure if exists bug336|
create procedure bug336(out y int)
2105 2106
begin
declare x int;
2107 2108
set x = (select sum(t.data) from test.t1 t);
set y = x;
2109
end|
2110 2111 2112 2113 2114
insert into t1 values ("a", 2), ("b", 3)|
call bug336(@y)|
select @y|
@y
5
2115
delete from t1|
2116 2117 2118
drop procedure bug336|
drop procedure if exists bug3157|
create procedure bug3157()
2119
begin
2120 2121 2122 2123 2124
if exists(select * from t1) then
set @n= @n + 1;
end if;
if (select count(*) from t1) then
set @n= @n + 1;
2125
end if;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2126
end|
2127 2128 2129 2130 2131 2132 2133 2134 2135 2136
set @n = 0|
insert into t1 values ("a", 1)|
call bug3157()|
select @n|
@n
2
delete from t1|
drop procedure bug3157|
drop procedure if exists bug5251|
create procedure bug5251()
2137
begin
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159
end|
select created into @c1 from mysql.proc
where db='test' and name='bug5251'|
alter procedure bug5251 comment 'foobar'|
select count(*) from mysql.proc
where  db='test' and name='bug5251' and created = @c1|
count(*)
1
drop procedure bug5251|
drop procedure if exists bug5251|
create procedure bug5251()
checksum table t1|
call bug5251()|
Table	Checksum
test.t1	0
call bug5251()|
Table	Checksum
test.t1	0
drop procedure bug5251|
drop procedure if exists bug5287|
create procedure bug5287(param1 int)
label1:
2160
begin
2161 2162 2163 2164
declare c cursor for select 5;
loop
if param1 >= 0 then
leave label1;
2165
end if;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2166
end loop;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2167
end|
2168 2169 2170 2171
call bug5287(1)|
drop procedure bug5287|
drop procedure if exists bug5307|
create procedure bug5307()
2172
begin
2173 2174 2175 2176 2177 2178 2179 2180
end; set @x = 3|
call bug5307()|
select @x|
@x
3
drop procedure bug5307|
drop procedure if exists bug5258|
create procedure bug5258()
2181
begin
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2182
end|
2183 2184
drop procedure if exists bug5258_aux|
create procedure bug5258_aux()
2185
begin
2186 2187 2188 2189
declare c, m char(19);
select created,modified into c,m from mysql.proc where name = 'bug5258';
if c = m then
select 'Ok';
2190
else
2191
select c, m;
2192
end if;
2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 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 2298 2299 2300
end|
call bug5258_aux()|
Ok
Ok
drop procedure bug5258|
drop procedure bug5258_aux|
drop function if exists bug4487|
create function bug4487() returns char
begin
declare v char;
return v;
end|
select bug4487()|
bug4487()
NULL
drop function bug4487|
drop procedure if exists bug4941|
drop procedure if exists bug4941|
create procedure bug4941(out x int)
begin
declare c cursor for select i from t2 limit 1;
open c;
fetch c into x;
close c;
end|
insert into t2 values (null, null, null)|
set @x = 42|
call bug4941(@x)|
select @x|
@x
NULL
delete from t1|
drop procedure bug4941|
drop procedure if exists bug3583|
drop procedure if exists bug3583|
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|
drop procedure if exists bug4905|
create table t3 (s1 int,primary key (s1))|
drop procedure if exists bug4905|
create procedure bug4905()
begin
declare v int;
declare continue handler for sqlstate '23000' set v = 5;
insert into t3 values (1);
end|
call bug4905()|
select row_count()|
row_count()
1
call bug4905()|
select row_count()|
row_count()
0
call bug4905()|
select row_count()|
row_count()
0
select * from t3|
s1
1
drop procedure bug4905|
drop table t3|
drop procedure if exists bug6029|
drop procedure if exists bug6029|
create procedure bug6029()
2301
begin
2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365
declare exit handler for 1136  select '1136';
declare exit handler for sqlstate '23000'  select 'sqlstate 23000';
declare continue handler for sqlexception  select 'sqlexception';
insert into t3 values (1);
insert into t3 values (1,2);
end|
create table t3 (s1 int, primary key (s1))|
insert into t3 values (1)|
call bug6029()|
sqlstate 23000
sqlstate 23000
delete from t3|
call bug6029()|
1136
1136
drop procedure bug6029|
drop table t3|
drop procedure if exists bug8540|
create procedure bug8540()
begin
declare x int default 1;
select x as y, x+0 as z;
end|
call bug8540()|
y	z
1	1
drop procedure bug8540|
create table t3 (s1 int)|
drop procedure if exists bug6642|
create procedure bug6642()
select abs(count(s1)) from t3|
call bug6642()|
abs(count(s1))
0
call bug6642()|
abs(count(s1))
0
drop procedure bug6642|
insert into t3 values (0),(1)|
drop procedure if exists bug7013|
create procedure bug7013()
select s1,count(s1) from t3 group by s1 with rollup|
call bug7013()|
s1	count(s1)
0	1
1	1
NULL	2
call bug7013()|
s1	count(s1)
0	1
1	1
NULL	2
drop procedure bug7013|
drop table if exists t4|
create table t4 (
a mediumint(8) unsigned not null auto_increment,
b smallint(5) unsigned not null,
c char(32) not null,
primary key  (a)
) engine=myisam default charset=latin1|
insert into t4 values (1, 2, 'oneword')|
insert into t4 values (2, 2, 'anotherword')|
drop procedure if exists bug7743|
create procedure bug7743 ( searchstring char(28) )
2366
begin
2367 2368 2369
declare var mediumint(8) unsigned;
select a into var from t4 where b = 2 and c = binary searchstring limit 1;
select var;
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
2370
end|
2371 2372
call bug7743("oneword")|
var
2373
1
2374 2375 2376 2377 2378 2379 2380
call bug7743("OneWord")|
var
NULL
Warnings:
Warning	1329	No data to FETCH
call bug7743("anotherword")|
var
2381
2
2382 2383 2384
call bug7743("AnotherWord")|
var
NULL
2385
Warnings:
2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
Warning	1329	No data to FETCH
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()
2398
begin
2399 2400
declare i int;
select max(s1)+1 into i from t3;
2401
end|
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
create procedure bug7992_2()
insert into t3 (s1) select max(t4.s1)+1 from t3 as t4|
call bug7992_1()|
call bug7992_1()|
call bug7992_2()|
call bug7992_2()|
drop procedure bug7992_1|
drop procedure bug7992_2|
drop table t3|
create table t3 (  userid bigint(20) not null default 0 )|
drop procedure if exists bug8116|
create procedure bug8116(in _userid int)
select * from t3 where userid = _userid|
call bug8116(42)|
userid
call bug8116(42)|
userid
drop procedure bug8116|
drop table t3|
drop procedure if exists bug6857|
create procedure bug6857(counter int)
2423
begin
2424 2425 2426 2427 2428 2429 2430 2431 2432
declare t0, t1 int;
declare plus bool default 0;
set t0 = current_time();
while counter > 0 do
set counter = counter - 1;
end while;
set t1 = current_time();
if t1 > t0 then
set plus = 1;
2433
end if;
2434
select plus;
2435
end|
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
drop procedure bug6857|
drop procedure if exists bug8757|
create procedure bug8757()
begin
declare x int;
declare c1 cursor for select data from t1 limit 1;
begin
declare y int;
declare c2 cursor for select i from t2 limit 1;
open c2;
fetch c2 into y;
close c2;
select 2,y;
end;
open c1;
fetch c1 into x;
close c1;
select 1,x;
end|
delete from t1|
delete from t2|
insert into t1 values ("x", 1)|
insert into t2 values ("y", 2, 0.0)|
call bug8757()|
2	y
2	2
1	x
1	1
delete from t1|
delete from t2|
drop procedure bug8757|
drop procedure if exists bug8762|
drop procedure if exists bug8762; create procedure bug8762() begin end|
drop procedure if exists bug8762; create procedure bug8762() begin end|
drop procedure bug8762|
2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484
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()
2485
answer	42
2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497
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|
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2498 2499 2500 2501
drop procedure if exists p1|
create table t3(id int)|
insert into t3 values(1)|
create procedure bug7992()
2502 2503
begin
declare i int;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2504 2505 2506 2507 2508 2509
select max(id)+1 into i from t3;
end|
call bug7992()|
call bug7992()|
drop procedure bug7992|
drop table t3|
2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527
create table t3 (
lpitnumber int(11) default null,
lrecordtype int(11) default null
)|
create table t4 (
lbsiid int(11) not null default '0',
ltradingmodeid int(11) not null default '0',
ltradingareaid int(11) not null default '0',
csellingprice decimal(19,4) default null,
primary key  (lbsiid,ltradingmodeid,ltradingareaid)
)|
create table t5 (
lbsiid int(11) not null default '0',
ltradingareaid int(11) not null default '0',
primary key  (lbsiid,ltradingareaid)
)|
drop procedure if exists bug8849|
create procedure bug8849()
2528
begin
2529
insert into t5
2530
(
2531 2532
t5.lbsiid,
t5.ltradingareaid
2533
)
2534
select distinct t3.lpitnumber, t4.ltradingareaid
2535
from
2536 2537 2538 2539 2540
t4 join t3 on
t3.lpitnumber = t4.lbsiid
and t3.lrecordtype = 1
left join t4 as price01 on
price01.lbsiid = t4.lbsiid and
2541
price01.ltradingmodeid = 1 and
2542 2543 2544 2545 2546 2547 2548
t4.ltradingareaid = price01.ltradingareaid;
end|
call bug8849()|
call bug8849()|
call bug8849()|
drop procedure bug8849|
drop tables t3,t4,t5|
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567
drop procedure if exists bug8937|
create procedure bug8937()
begin
declare s,x,y,z int;
declare a float;
select sum(data),avg(data),min(data),max(data) into s,x,y,z from t1;
select s,x,y,z;
select avg(data) into a from t1;
select a;
end|
delete from t1|
insert into t1 (data) values (1), (2), (3), (4), (6)|
call bug8937()|
s	x	y	z
16	3	1	6
a
3.2000
drop procedure bug8937|
delete from t1|
2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631
drop procedure if exists bug6900|
drop procedure if exists bug9074|
drop procedure if exists bug6900_9074|
create table t3 (w char unique, x char)|
insert into t3 values ('a', 'b')|
create procedure bug6900()
begin
declare exit handler for sqlexception select '1';
begin
declare exit handler for sqlexception select '2';
insert into t3 values ('x', 'y', 'z');
end;
end|
create procedure bug9074()
begin
declare x1, x2, x3, x4, x5, x6 int default 0;
begin    
declare continue handler for sqlstate '23000' set x5 = 1;      
insert into t3 values ('a', 'b');      
set x6 = 1;      
end;
begin1_label:
begin
declare continue handler for sqlstate '23000' set x1 = 1;      
insert into t3 values ('a', 'b');      
set x2 = 1;      
begin2_label:
begin  
declare exit handler for sqlstate '23000' set x3 = 1;         
set x4= 1;         
insert into t3 values ('a','b');
set x4= 0;
end begin2_label;
end begin1_label;
select x1, x2, x3, x4, x5, x6;
end|
create procedure bug6900_9074(z int)
begin
declare exit handler for sqlstate '23000' select '23000';
begin
declare exit handler for sqlexception select 'sqlexception';
if z = 1 then
insert into t3 values ('a', 'b');
else
insert into t3 values ('x', 'y', 'z');
end if;
end;
end|
call bug6900()|
2
2
call bug9074()|
x1	x2	x3	x4	x5	x6
1	1	1	1	1	1
call bug6900_9074(0)|
sqlexception
sqlexception
call bug6900_9074(1)|
23000
23000
drop procedure bug6900|
drop procedure bug9074|
drop procedure bug6900_9074|
drop table t3|
2632 2633 2634 2635 2636 2637
drop procedure if exists avg|
create procedure avg ()
begin
end|
call avg ()|
drop procedure avg|
2638
drop procedure if exists bug6129|
2639
set @old_mode= @@sql_mode;
2640
set @@sql_mode= "ERROR_FOR_DIVISION_BY_ZERO";
2641 2642 2643 2644
create procedure bug6129()
select @@sql_mode|
call bug6129()|
@@sql_mode
2645
ERROR_FOR_DIVISION_BY_ZERO
2646 2647 2648
set @@sql_mode= "NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO"|
call bug6129()|
@@sql_mode
2649
ERROR_FOR_DIVISION_BY_ZERO
2650 2651 2652
set @@sql_mode= "NO_ZERO_IN_DATE"|
call bug6129()|
@@sql_mode
2653
ERROR_FOR_DIVISION_BY_ZERO
2654
set @@sql_mode=@old_mode;
2655
drop procedure bug6129|
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673
drop procedure if exists bug9856|
create procedure bug9856()
begin
declare v int;
declare c cursor for select data from t1;
declare exit handler for sqlexception, not found select '16';
open c;
fetch c into v;
select v;
end|
delete from t1|
call bug9856()|
16
16
call bug9856()|
16
16
drop procedure bug9856|
2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
drop procedure if exists bug9674_1|
drop procedure if exists bug9674_2|
create procedure bug9674_1(out arg int)
begin
declare temp_in1 int default 0;
declare temp_fl1 int default 0;
set temp_in1 = 100;
set temp_fl1 = temp_in1/10;
set arg = temp_fl1;
end|
create procedure bug9674_2()
begin
declare v int default 100;
select v/10;
end|
call bug9674_1(@sptmp)|
call bug9674_1(@sptmp)|
select @sptmp|
@sptmp
10
call bug9674_2()|
v/10
2696
10.0000
2697 2698
call bug9674_2()|
v/10
2699
10.0000
2700 2701
drop procedure bug9674_1|
drop procedure bug9674_2|
2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
drop procedure if exists bug9598_1|
drop procedure if exists bug9598_2|
create procedure bug9598_1(in var_1 char(16),
out var_2 integer, out var_3 integer)
begin
set var_2 = 50;
set var_3 = 60;
end|
create procedure bug9598_2(in v1 char(16),
in v2 integer,
in v3 integer,
in v4 integer,
in v5 integer)
begin
select v1,v2,v3,v4,v5;
call bug9598_1(v1,@tmp1,@tmp2);
select v1,v2,v3,v4,v5;
end|
call bug9598_2('Test',2,3,4,5)|
v1	v2	v3	v4	v5
Test	2	3	4	5
v1	v2	v3	v4	v5
Test	2	3	4	5
select @tmp1, @tmp2|
@tmp1	@tmp2
50	60
drop procedure bug9598_1|
drop procedure bug9598_2|
2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751
drop procedure if exists bug9902|
create function bug9902() returns int(11)
begin
set @x = @x + 1;
return @x;
end|
set @qcs1 = @@query_cache_size|
set global query_cache_size = 100000|
set @x = 1|
insert into t1 values ("qc", 42)|
select bug9902() from t1|
bug9902()
2
select bug9902() from t1|
bug9902()
3
select @x|
@x
3
set global query_cache_size = @qcs1|
delete from t1|
drop function bug9902|
2752 2753
drop function if exists bug9102|
create function bug9102() returns blob return 'a'|
2754
select bug9102()|
2755 2756
bug9102()
a
2757 2758
drop function bug9102|
drop function if exists bug7648|
2759 2760 2761 2762 2763
create function bug7648() returns bit(8) return 'a'|
select bug7648()|
bug7648()
a
drop function bug7648|
2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784
drop function if exists bug9775|
create function bug9775(v1 char(1)) returns enum('a','b') return v1|
select bug9775('a'),bug9775('b'),bug9775('c')|
bug9775('a')	bug9775('b')	bug9775('c')
a	b	
drop function bug9775|
create function bug9775(v1 int) returns enum('a','b') return v1|
select bug9775(1),bug9775(2),bug9775(3)|
bug9775(1)	bug9775(2)	bug9775(3)
a	b	
drop function bug9775|
create function bug9775(v1 char(1)) returns set('a','b') return v1|
select bug9775('a'),bug9775('b'),bug9775('a,b'),bug9775('c')|
bug9775('a')	bug9775('b')	bug9775('a,b')	bug9775('c')
a	b	a,b	
drop function bug9775|
create function bug9775(v1 int) returns set('a','b') return v1|
select bug9775(1),bug9775(2),bug9775(3),bug9775(4)|
bug9775(1)	bug9775(2)	bug9775(3)	bug9775(4)
a	b	a,b	
drop function bug9775|
2785 2786 2787 2788 2789 2790 2791 2792 2793 2794
drop function if exists bug8861|
create function bug8861(v1 int) returns year return v1|
select bug8861(05)|
bug8861(05)
2005
set @x = bug8861(05)|
select @x|
@x
2005
drop function bug8861|
2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814
drop procedure if exists bug9004_1|
drop procedure if exists bug9004_2|
create procedure bug9004_1(x char(16))
begin
insert into t1 values (x, 42);
insert into t1 values (x, 17);
end|
create procedure bug9004_2(x char(16))
call bug9004_1(x)|
call bug9004_1('12345678901234567')|
Warnings:
Warning	1265	Data truncated for column 'id' at row 1
Warning	1265	Data truncated for column 'id' at row 2
call bug9004_2('12345678901234567890')|
Warnings:
Warning	1265	Data truncated for column 'id' at row 1
Warning	1265	Data truncated for column 'id' at row 2
delete from t1|
drop procedure bug9004_1|
drop procedure bug9004_2|
2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830
drop procedure if exists bug7293|
insert into t1 values ('secret', 0)|
create procedure bug7293(p1 varchar(100))
begin
if exists (select id from t1 where soundex(p1)=soundex(id)) then
select 'yes';
end if;
end;|
call bug7293('secret')|
yes
yes
call bug7293 ('secrete')|
yes
yes
drop procedure bug7293|
delete from t1|
2831 2832 2833 2834 2835 2836 2837 2838
drop procedure if exists bug9841|
drop view if exists v1|
create view v1 as select * from t1, t2 where id = s|
create procedure bug9841 ()
update v1 set data = 10|
call bug9841()|
drop view v1|
drop procedure bug9841|
2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863
drop procedure if exists bug5963|
create procedure bug5963_1 () begin declare v int; set v = (select s1 from t3); select v; end;|
create table t3 (s1 int)|
insert into t3 values (5)|
call bug5963_1()|
v
5
call bug5963_1()|
v
5
drop procedure bug5963_1|
drop table t3|
create procedure bug5963_2 (cfk_value int) 
begin 
if cfk_value in (select cpk from t3) then 
set @x = 5; 
end if; 
end; 
|
create table t3 (cpk int)|
insert into t3 values (1)|
call bug5963_2(1)|
call bug5963_2(1)|
drop procedure bug5963_2|
drop table t3|
2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874
drop function if exists bug9559|
create function bug9559()
returns int
begin
set @y = -6/2;
return @y;
end|
select bug9559()|
bug9559()
-3
drop function bug9559|
2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903
drop procedure if exists bug10961|
create procedure bug10961()
begin
declare v char;
declare x int;
declare c cursor for select * from dual;
declare continue handler for sqlexception select x;
set x = 1;
open c;
set x = 2;
fetch c into v;
set x = 3;
close c;
end|
call bug10961()|
x
1
x
2
x
3
call bug10961()|
x
1
x
2
x
3
drop procedure bug10961|
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943
DROP PROCEDURE IF EXISTS bug6866|
DROP VIEW IF EXISTS tv|
Warnings:
Note	1051	Unknown table 'test.tv'
DROP TABLE IF EXISTS tt1,tt2,tt3|
Warnings:
Note	1051	Unknown table 'tt1'
Note	1051	Unknown table 'tt2'
Note	1051	Unknown table 'tt3'
CREATE TABLE tt1 (a1 int, a2 int, a3 int, data varchar(10))|
CREATE TABLE tt2 (a2 int, data2 varchar(10))|
CREATE TABLE tt3 (a3 int, data3 varchar(10))|
INSERT INTO tt1 VALUES (1, 1, 4, 'xx')|
INSERT INTO tt2 VALUES (1, 'a')|
INSERT INTO tt2 VALUES (2, 'b')|
INSERT INTO tt2 VALUES (3, 'c')|
INSERT INTO tt3 VALUES (4, 'd')|
INSERT INTO tt3 VALUES (5, 'e')|
INSERT INTO tt3 VALUES (6, 'f')|
CREATE VIEW tv AS
SELECT tt1.*, tt2.data2, tt3.data3
FROM tt1 INNER JOIN tt2 ON tt1.a2 = tt2.a2
LEFT JOIN tt3 ON tt1.a3 = tt3.a3
ORDER BY tt1.a1, tt2.a2, tt3.a3|
CREATE PROCEDURE bug6866 (_a1 int)
BEGIN
SELECT * FROM tv WHERE a1 = _a1;
END|
CALL bug6866(1)|
a1	a2	a3	data	data2	data3
1	1	4	xx	a	d
CALL bug6866(1)|
a1	a2	a3	data	data2	data3
1	1	4	xx	a	d
CALL bug6866(1)|
a1	a2	a3	data	data2	data3
1	1	4	xx	a	d
DROP PROCEDURE bug6866;
DROP VIEW tv|
DROP TABLE tt1, tt2, tt3|
2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995
DROP PROCEDURE IF EXISTS bug10136|
create table t3 ( name char(5) not null primary key, val float not null)|
insert into t3 values ('aaaaa', 1), ('bbbbb', 2), ('ccccc', 3)|
create procedure bug10136()
begin
declare done int default 3;
repeat
select * from t3;
set done = done - 1;
until done <= 0 end repeat;
end|
call bug10136()|
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
call bug10136()|
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
call bug10136()|
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
name	val
aaaaa	1
bbbbb	2
ccccc	3
drop procedure bug10136|
drop table t3|
2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020
drop procedure if exists bug11529|
create procedure bug11529()
begin
declare c cursor for select id, data from t1 where data in (10,13);
open c;
begin
declare vid char(16);
declare vdata int;
declare exit handler for not found begin end;
while true do
fetch c into vid, vdata;
end while;
end;
close c;
end|
insert into t1 values
('Name1', 10),
('Name2', 11),
('Name3', 12),
('Name4', 13),
('Name5', 14)|
call bug11529()|
call bug11529()|
delete from t1|
drop procedure bug11529|
3021 3022 3023
drop procedure if exists bug6063|
drop procedure if exists bug7088_1|
drop procedure if exists bug7088_2|
3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040
drop procedure if exists bug9565_sub|
drop procedure if exists bug9565|
create procedure bug9565_sub()
begin
select * from t1;
end|
create procedure bug9565()
begin
insert into t1 values ("one", 1);
call bug9565_sub();
end|
call bug9565()|
id	data
one	1
delete from t1|
drop procedure bug9565_sub|
drop procedure bug9565|
3041 3042 3043 3044
drop procedure if exists bug9538|
create procedure bug9538()
set @@sort_buffer_size = 1000000|
set @x = @@sort_buffer_size|
3045
set @@sort_buffer_size = 2000000|
3046 3047
select @@sort_buffer_size|
@@sort_buffer_size
3048
2000000
3049 3050 3051 3052 3053 3054
call bug9538()|
select @@sort_buffer_size|
@@sort_buffer_size
1000000
set @@sort_buffer_size = @x|
drop procedure bug9538|
georg@lmy002.wdf.sap.corp's avatar
georg@lmy002.wdf.sap.corp committed
3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078
drop procedure if exists bug8692|
create table t3 (c1 varchar(5), c2 char(5), c3 enum('one','two'), c4 text, c5 blob, c6 char(5), c7 varchar(5))|
insert into t3 values ('', '', '', '', '', '', NULL)|
Warnings:
Warning	1265	Data truncated for column 'c3' at row 1
create procedure bug8692()
begin 
declare v1 VARCHAR(10); 
declare v2 VARCHAR(10); 
declare v3 VARCHAR(10); 
declare v4 VARCHAR(10); 
declare v5 VARCHAR(10); 
declare v6 VARCHAR(10); 
declare v7 VARCHAR(10); 
declare c8692 cursor for select c1,c2,c3,c4,c5,c6,c7 from t3; 
open c8692; 
fetch c8692 into v1,v2,v3,v4,v5,v6,v7;
select v1, v2, v3, v4, v5, v6, v7;
end|
call bug8692()|
v1	v2	v3	v4	v5	v6	v7
						NULL
drop procedure bug8692|
drop table t3|
3079 3080 3081 3082 3083 3084 3085 3086 3087
drop function if exists bug10055|
create function bug10055(v char(255)) returns char(255) return lower(v)|
select t.column_name, bug10055(t.column_name)
from information_schema.columns as t
where t.table_schema = 'test' and t.table_name = 't1'|
column_name	bug10055(t.column_name)
id	id
data	data
drop function bug10055|
3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102
drop function if exists f_bug11247|
drop procedure if exists p_bug11247|
create function f_bug11247(param int)
returns int
return param + 1|
create procedure p_bug11247(lim int)
begin
declare v int default 0;
while v < lim do
set v= f_bug11247(v);
end while;
end|
call p_bug11247(10)|
drop function f_bug11247|
drop procedure p_bug11247|
3103
drop procedure if exists bug12168|
3104 3105 3106 3107
drop table if exists t3, t4|
create table t3 (a int)|
insert into t3 values (1),(2),(3),(4)|
create table t4 (a int)|
3108 3109 3110 3111 3112
create procedure bug12168(arg1 char(1))
begin
declare b, c integer;
if arg1 = 'a' then
begin
3113
declare c1 cursor for select a from t3 where a % 2;
3114 3115 3116 3117 3118 3119 3120 3121
declare continue handler for not found set b = 1;
set b = 0;
open c1;
c1_repeat: repeat
fetch c1 into c;
if (b = 1) then
leave c1_repeat;
end if;
3122
insert into t4 values (c);
3123 3124 3125 3126 3127 3128
until b = 1
end repeat;
end;
end if;
if arg1 = 'b' then
begin
3129
declare c2 cursor for select a from t3 where not a % 2;
3130 3131 3132 3133 3134 3135 3136 3137
declare continue handler for not found set b = 1;
set b = 0;
open c2;
c2_repeat: repeat
fetch c2 into c;
if (b = 1) then
leave c2_repeat;
end if;
3138
insert into t4 values (c);
3139 3140 3141 3142 3143 3144
until b = 1
end repeat;
end;
end if;
end|
call bug12168('a')|
3145
select * from t4|
3146 3147 3148
a
1
3
3149
truncate t4|
3150
call bug12168('b')|
3151
select * from t4|
3152 3153 3154
a
2
4
3155
truncate t4|
3156
call bug12168('a')|
3157
select * from t4|
3158 3159 3160
a
1
3
3161
truncate t4|
3162
call bug12168('b')|
3163
select * from t4|
3164 3165 3166
a
2
4
3167 3168
truncate t4|
drop table t3, t4|
3169
drop procedure if exists bug12168|
3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188
drop table if exists t3|
drop procedure if exists bug11333|
create table t3 (c1 char(128))|
insert into t3 values 
('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')|
create procedure bug11333(i int)
begin
declare tmp varchar(128);
set @x = 0;
repeat
select c1 into tmp from t3
where c1 = 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA';
set @x = @x + 1;
until @x >= i
end repeat;
end|
call bug11333(10)|
drop procedure bug11333|
drop table t3|
acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
3189 3190 3191 3192 3193 3194 3195
drop function if exists bug9048|
create function bug9048(f1 char binary) returns char binary
begin
set f1= concat( 'hello', f1 );
return f1;
end|
drop function bug9048|
3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214
drop procedure if exists bug12849_1|
create procedure bug12849_1(inout x char) select x into x|
set @var='a'|
call bug12849_1(@var)|
select @var|
@var
a
drop procedure bug12849_1|
drop procedure if exists bug12849_2|
create procedure bug12849_2(inout foo varchar(15))
begin
select concat(foo, foo) INTO foo;
end|
set @var='abcd'|
call bug12849_2(@var)|
select @var|
@var
abcdabcd
drop procedure bug12849_2|
3215
drop table t1,t2;