summaryrefslogtreecommitdiff
path: root/sql/sql_parse.cc
diff options
context:
space:
mode:
authorDavi Arnaut <Davi.Arnaut@Sun.COM>2009-02-16 08:38:15 -0300
committerDavi Arnaut <Davi.Arnaut@Sun.COM>2009-02-16 08:38:15 -0300
commitd3a10ec6efdf8a257935a8f6161ca83d5538ce6b (patch)
treed832f687010d1e087be6a577a52780b46b04ac98 /sql/sql_parse.cc
parentb2a8faebea8b83c2d90096dac2627290f090bb07 (diff)
downloadmariadb-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.cc2
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()) ||