1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug#9102 - Stored proccedures: function which returns blob causes crash

Initialization of fields for sp return type was not complete.
This commit is contained in:
acurtis@xiphis.org
2005-04-19 09:09:25 +01:00
parent 969263cf1d
commit f638e5cb8f
6 changed files with 124 additions and 3 deletions

View File

@@ -2958,4 +2958,10 @@ select @x|
set global query_cache_size = @qcs1|
delete from t1|
drop function bug9902|
drop function if exists bug9102|
create function bug9102() returns blob return 'a'|
select bug9102();
drop function bug9102|
bug9102()
a
drop table t1,t2;