1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixed BUG#4487: Stored procedure connection aborted if uninitialized char.

This commit is contained in:
pem@mysql.comhem.se
2004-09-09 19:08:54 +02:00
parent e67fcee270
commit dde44b8c8c
3 changed files with 33 additions and 2 deletions

View File

@ -1987,6 +1987,18 @@ call bug5258_aux()|
drop procedure bug5258|
drop procedure bug5258_aux|
#
# BUG#4487: Stored procedure connection aborted if uninitialized char
#
create function bug4487() returns char
begin
declare v char;
return v;
end|
select bug4487()|
drop function bug4487|
#
# Some "real" examples