mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
add a warning when column_case_sensitive in set to false
This commit is contained in:
parent
a7ac019792
commit
baf947da4b
2 changed files with 8 additions and 0 deletions
|
@ -1087,6 +1087,10 @@ def main():
|
|||
try:
|
||||
if state == 'present':
|
||||
if not role.exists:
|
||||
# TODO Release 4.0.0 : Remove this warning or change the message.
|
||||
if not column_case_sensitive and "(" in str(priv):
|
||||
module.warn("column_case_sensitive set to False, column's name will be uppercased")
|
||||
|
||||
if subtract_privs:
|
||||
priv = None # avoid granting unwanted privileges
|
||||
if detach_members:
|
||||
|
|
|
@ -490,6 +490,10 @@ def main():
|
|||
mode = get_mode(cursor)
|
||||
except Exception as e:
|
||||
module.fail_json(msg=to_native(e))
|
||||
|
||||
# TODO Release 4.0.0 : Remove this warning or change the message.
|
||||
if not column_case_sensitive and "(" in str(priv):
|
||||
module.warn("column_case_sensitive set to False, column's name will be uppercased")
|
||||
priv = privileges_unpack(priv, mode, column_case_sensitive, ensure_usage=not subtract_privs)
|
||||
password_changed = False
|
||||
if state == "present":
|
||||
|
|
Loading…
Add table
Reference in a new issue