mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
(cherry picked from commit 0dbedf57cb
)
Co-authored-by: Laurent Indermühle <laurent.indermuehle@epfl.ch>
This commit is contained in:
parent
37b105c526
commit
534a6fa1bc
1 changed files with 8 additions and 0 deletions
|
@ -701,6 +701,14 @@ def privileges_grant(cursor, user, host, db_table, priv, tls_requires, maria_rol
|
|||
priv_string = ",".join([p for p in priv if p not in ('GRANT', )])
|
||||
query = ["GRANT %s ON %s" % (priv_string, db_table)]
|
||||
|
||||
# MySQL and MariaDB don't store roles in the user table the same manner:
|
||||
# select user, host from mysql.user;
|
||||
# +------------------+-----------+
|
||||
# | user | host |
|
||||
# +------------------+-----------+
|
||||
# | role_foo | % | <- MySQL
|
||||
# | role_foo | | <- MariaDB
|
||||
# +------------------+-----------+
|
||||
if not maria_role:
|
||||
query.append("TO %s@%s")
|
||||
params = (user, host)
|
||||
|
|
Loading…
Add table
Reference in a new issue