Document MySQL and MariaDB don't store roles with same manner

This commit is contained in:
Laurent Indermuehle 2023-10-26 13:39:55 +02:00
parent fd0b1919c3
commit 839736756a
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -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)