mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fix error "No database selected" when setting grants
This commit is contained in:
parent
b3a22390f0
commit
2312d5f036
1 changed files with 1 additions and 1 deletions
|
@ -820,7 +820,7 @@ def privileges_grant(cursor, user, host, db_table, priv, tls_requires):
|
||||||
# specification of db and table often use a % (SQL wildcard)
|
# specification of db and table often use a % (SQL wildcard)
|
||||||
db_table = db_table.replace('%', '%%')
|
db_table = db_table.replace('%', '%%')
|
||||||
priv_string = ",".join([p for p in priv if p not in ('GRANT', 'REQUIRESSL')])
|
priv_string = ",".join([p for p in priv if p not in ('GRANT', 'REQUIRESSL')])
|
||||||
query = ["GRANT %s ON %s" % (priv_string, db_table)]
|
query = ["GRANT %s ON mysql.%s" % (priv_string, db_table)]
|
||||||
query.append("TO %s@%s")
|
query.append("TO %s@%s")
|
||||||
params = (user, host)
|
params = (user, host)
|
||||||
if tls_requires and use_old_user_mgmt(cursor):
|
if tls_requires and use_old_user_mgmt(cursor):
|
||||||
|
|
Loading…
Add table
Reference in a new issue