mysql automatic_sp_privileges_mysql variable automatic_sp_privileges 疑问

在mysql的官方文档中:

automatic_sp_privileges

Variable Name automatic_sp_privileges

When this variable has a value of 1 (the default), the server automatically grants the EXECUTE and ALTER ROUTINE privileges

to the creator of a stored routine, if the user cannot already execute and alter or drop the routine. (The ALTER ROUTINE

privilege is required to drop the routine.) The server also automatically drops those privileges from the creator when the routine

is dropped. If automatic_sp_privileges is 0, the server does not automatically add or drop these privileges

在测试的时候,create procedure

book@localhost book>DELIMITER ;;

book@localhost book>CREATE DEFINER=`book`@`%` PROCEDURE `employee_test`(IN `test_name` char(64))

->     DETERMINISTIC

-> BEGIN

-> set @sum=(select count(*) from employee where name=test_name);

-> if(@sum>0) then

-> select * from test;

-> end if;

-> END ;;

Query OK, 0 rows affected, 1 warning (0.00 sec)

book@localhost book>delimiter ;

book@localhost book>show warnings;

+---------+------+------------------------------------------------------+

| Level   | Code | Message                                              |

+---------+------+------------------------------------------------------+

| Warning | 1404 | Failed to grant EXECUTE and ALTER ROUTINE privileges |

+---------+------+------------------------------------------------------+

1 row in set (0.00 sec)

为什么会 Failed to grant EXECUTE and ALTER ROUTINE privileges  ?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值