mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 15:21:25 -07:00
Adds functional tests for new mysql_user privs (#48403)
Adds tests for FUNCTION and PROCEDURE privs
This commit is contained in:
parent
9757d9d4c3
commit
cdc5ab7737
4 changed files with 87 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
|||
USE foo;
|
||||
DELIMITER ;;
|
||||
CREATE FUNCTION `function` () RETURNS tinyint(4)
|
||||
BEGIN
|
||||
DECLARE NAME_FOUND tinyint DEFAULT 0;
|
||||
RETURN NAME_FOUND;
|
||||
END;;
|
||||
DELIMITER ;
|
Loading…
Add table
Add a link
Reference in a new issue