mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
Document MySQL and MariaDB don't store roles with same manner (#584)
This commit is contained in:
parent
fd0b1919c3
commit
0dbedf57cb
1 changed files with 8 additions and 0 deletions
|
@ -743,6 +743,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