From ab62f3dd86cfa16e7ec427b02f0634b5dfee0024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Inderm=C3=BChle?= Date: Fri, 6 Oct 2023 14:53:34 +0200 Subject: [PATCH] add more explicit warning message Co-authored-by: Andrew Klychkov --- plugins/modules/mysql_user.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/modules/mysql_user.py b/plugins/modules/mysql_user.py index d1cb22e..3e914e6 100644 --- a/plugins/modules/mysql_user.py +++ b/plugins/modules/mysql_user.py @@ -480,7 +480,9 @@ def main(): # TODO Release 4.0.0 : Remove this test and variable assignation if column_case_sensitive is None: column_case_sensitive = False - module.warn("Option column_case_sensitive not provided, column's name will be uppercased") + module.warn("Option column_case_sensitive is not provided. " + "The default is now false, so the column's name will be uppercased. " + "The default will be changed to true in community.mysql 4.0.0.") if not sql_log_bin: cursor.execute("SET SQL_LOG_BIN=0;")