mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-05-29 20:39:11 -07:00
mysql_user: Add REPLICA MONITOR privilege to supported (#108)
* mysql_user: Add REPLICA MONITOR privilege to supported * Add changelog fragment
This commit is contained in:
parent
fc2dd0079f
commit
baea97d24c
2 changed files with 5 additions and 1 deletions
|
@ -340,7 +340,9 @@ VALID_PRIVS = frozenset(('CREATE', 'DROP', 'GRANT', 'GRANT OPTION',
|
|||
'REPLICATION MASTER ADMIN',
|
||||
'REPLICATION SLAVE ADMIN',
|
||||
'SET USER',
|
||||
'SHOW_ROUTINE',))
|
||||
'SHOW_ROUTINE',
|
||||
'SLAVE MONITOR',
|
||||
'REPLICA MONITOR',))
|
||||
|
||||
|
||||
class InvalidPrivsError(Exception):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue