diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-02-16 08:38:15 -0300 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-02-16 08:38:15 -0300 |
commit | d3a10ec6efdf8a257935a8f6161ca83d5538ce6b (patch) | |
tree | d832f687010d1e087be6a577a52780b46b04ac98 /sql/sql_parse.cc | |
parent | b2a8faebea8b83c2d90096dac2627290f090bb07 (diff) | |
download | mariadb-git-d3a10ec6efdf8a257935a8f6161ca83d5538ce6b.tar.gz |
Bug#41077: Warning contains wrong future version
Substitute all references of MySQL version "5.2" to "6.0" in
deprecation warning messages.Deprecated constructs are being
removed in the 6.0 tree.
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 7c5f469da41..f7d6d5bac4d 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -5967,7 +5967,7 @@ bool add_field_to_list(THD *thd, LEX_STRING *field_name, enum_field_types type, */ char buf[32]; my_snprintf(buf, sizeof(buf), "TIMESTAMP(%s)", length); - WARN_DEPRECATED(thd, "5.2", buf, "'TIMESTAMP'"); + WARN_DEPRECATED(thd, "6.0", buf, "'TIMESTAMP'"); } if (!(new_field= new Create_field()) || |