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

Fixed BUG#3339: Stored procedures in nonexistent schemas are uncallable.

Also added some related security tests and corrected related error messages.
This commit is contained in:
pem@mysql.comhem.se
2004-06-15 15:42:28 +02:00
parent 26ec49f1a8
commit ecd424ac58
7 changed files with 67 additions and 12 deletions

View File

@@ -517,7 +517,6 @@ end case|
call bug3287(2)|
drop procedure bug3287|
#
# BUG#3297
#
@@ -548,6 +547,13 @@ select @x|
drop procedure bug3279|
drop table t3|
#
# BUG#3339
#
--error 1049
create procedure nodb.bug3339() begin end|
drop table t1|
delimiter ;|