diff options
author | acurtis@xiphis.org <> | 2005-04-19 10:51:11 +0100 |
---|---|---|
committer | acurtis@xiphis.org <> | 2005-04-19 10:51:11 +0100 |
commit | 77a9429c134ddf6eaf3936286280e216b2be03af (patch) | |
tree | 3d9c35c12c4a8a60ac8f5a90899a80ed1535e8c6 /mysql-test/r/sp.result | |
parent | f638e5cb8f9956b92c0f72fc48d6a297d7fc393e (diff) | |
download | mariadb-git-77a9429c134ddf6eaf3936286280e216b2be03af.tar.gz |
Bug#7648 - Stored procedure crash when invoking a function that returns a bit
bugfix 9102 corrected the crashing, this corrects the result.
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r-- | mysql-test/r/sp.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 4cc59679ce5..a4a3968672f 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -2964,4 +2964,10 @@ select bug9102(); drop function bug9102| bug9102() a +drop procedure if exists bug7648| +create function bug7648() returns bit(8) return 'a'| +select bug7648()| +bug7648() +a +drop function bug7648| drop table t1,t2; |