mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_user: Add SHOW_ROUTINE privilege support (#87)
* mysql_user: Add SHOW_ROUTINE privilege support * add changelog fragment Co-authored-by: Andrew Klychkov <andrew.klychkov@gmail.com>
This commit is contained in:
parent
9eb007969c
commit
2de3a57021
2 changed files with 4 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86).
|
|
@ -338,7 +338,8 @@ VALID_PRIVS = frozenset(('CREATE', 'DROP', 'GRANT', 'GRANT OPTION',
|
|||
'REPLICATION MASTER ADMIN',
|
||||
'REPLICATION SLAVE',
|
||||
'REPLICATION SLAVE ADMIN',
|
||||
'SET USER',))
|
||||
'SET USER',
|
||||
'SHOW_ROUTINE',))
|
||||
|
||||
|
||||
class InvalidPrivsError(Exception):
|
||||
|
|
Loading…
Add table
Reference in a new issue