无法执行MySQL存储过程

时间:2013-04-20 23:34:58

标签: mysql stored-functions

我正在使用MySQL存储函数,并且遇到了麻烦。

创建了一个函数并对其进行了测试后,我似乎无法允许其他用户执行它。从文档中,我似乎需要向其他用户授予EXECUTE访问权限,但这似乎不够。

我已经整理了几个我认为可以证明问题的脚本:

# This script creates two databases with a stored function in each.
#
# On one database, tester in granted all privileges.
# On the other, tester only gets a few.
#
# We want to find the minimum privileges required to allow tester to execute the
# stored function.
#
# This script must be run by an administrative user, i.e. root

CREATE DATABASE test1;

DELIMITER $$
CREATE FUNCTION test1.foo () RETURNS VARCHAR(255) DETERMINISTIC
BEGIN
   RETURN ('garp');
END$$

DELIMITER ;
GRANT ALL PRIVILEGES ON test1.* TO 'tester'@'localhost';

#

CREATE DATABASE test2;
DELIMITER $$
CREATE FUNCTION test2.foo () RETURNS VARCHAR(255) DETERMINISTIC
BEGIN
    RETURN ('garp');
END$$

DELIMITER ;

GRANT EXECUTE ON PROCEDURE test2.foo TO 'tester'@'localhost';

# This script tests whether tester can access the stored functions
#
# It should be executed by tester

SELECT 'test1.foo(): ', test1.foo ();
SELECT 'test2.foo(): ', test2.foo ();

当我运行第二个脚本时,出现错误:

$ mysql --user=tester --password=tester --skip-column-names < testScript2.sql
test1.foo():    garp
ERROR 1370 (42000) at line 6: execute command denied to user 'tester'@'localhost' for routine 'test2.foo'

我毫不怀疑我错过了一些明显的东西,但我看不出那是什么。我想我在第一个脚本的GRANT EXECUTE...语句中出了问题,并且对我使用单引号深感怀疑,但我记得大多数放置和包含单引号的组合都没有成功

我真的很感激能指出我错误的人。

作为参考,我正在运行Server version: 5.1.67-0ubuntu0.10.04.1 (Ubuntu)(在Ubuntu上!)。

由于

1 个答案:

答案 0 :(得分:4)

test2.foo是一个函数而不是一个过程。

尝试:

GRANT EXECUTE ON FUNCTION test2.foo TO 'tester'@'localhost';

(我能够在本地重现问题并确认此更改有效。)