summaryrefslogtreecommitdiff
path: root/mysql-test/t/sp-error.test
diff options
context:
space:
mode:
authorpem@mysql.comhem.se <>2004-10-22 20:29:06 +0200
committerpem@mysql.comhem.se <>2004-10-22 20:29:06 +0200
commit2c428ca09d2016730ed15bda8f9fe99b5629d5e5 (patch)
tree7a873eb1cff12b1f55c60118cf16a838f3ac0488 /mysql-test/t/sp-error.test
parentebf8dc0da60f8d911ccd3b4bb9d58260e9b0822c (diff)
downloadmariadb-git-2c428ca09d2016730ed15bda8f9fe99b5629d5e5.tar.gz
Fixed BUG#6030: Stored procedure has no appropriate DROP privilege.
...and no ALTER privilege either. For now, only the definer and root can drop or alter an SP.
Diffstat (limited to 'mysql-test/t/sp-error.test')
-rw-r--r--mysql-test/t/sp-error.test8
1 files changed, 0 insertions, 8 deletions
diff --git a/mysql-test/t/sp-error.test b/mysql-test/t/sp-error.test
index 73f2730b44c..08c8c7788ce 100644
--- a/mysql-test/t/sp-error.test
+++ b/mysql-test/t/sp-error.test
@@ -156,14 +156,6 @@ foo: loop
set @x=2;
end loop bar|
-# Referring to undef variable
-create procedure foo(out x int)
-begin
- declare y int;
- set x = y;
-end|
-drop procedure foo|
-
# RETURN in FUNCTION only
--error 1313
create procedure foo()