add a warning when column_case_sensitive in set to false

This commit is contained in:
Laurent Indermuehle 2023-10-05 14:38:31 +02:00
parent a7ac019792
commit baf947da4b
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
2 changed files with 8 additions and 0 deletions

View file

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

View file

@ -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":