mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Document MySQL and MariaDB don't store roles with same manner
This commit is contained in:
parent
fd0b1919c3
commit
839736756a
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', )])
|
priv_string = ",".join([p for p in priv if p not in ('GRANT', )])
|
||||||
query = ["GRANT %s ON %s" % (priv_string, db_table)]
|
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:
|
if not maria_role:
|
||||||
query.append("TO %s@%s")
|
query.append("TO %s@%s")
|
||||||
params = (user, host)
|
params = (user, host)
|
||||||
|
|
Loading…
Add table
Reference in a new issue