summaryrefslogtreecommitdiff
path: root/mysql-test/r/warnings.result
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 /mysql-test/r/warnings.result
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 'mysql-test/r/warnings.result')
-rw-r--r--mysql-test/r/warnings.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/warnings.result b/mysql-test/r/warnings.result
index 19d95acd5c1..2e393aea9e4 100644
--- a/mysql-test/r/warnings.result
+++ b/mysql-test/r/warnings.result
@@ -168,7 +168,7 @@ max_error_count 10
drop table t1;
set table_type=MYISAM;
Warnings:
-Warning 1287 The syntax '@@table_type' is deprecated and will be removed in MySQL 5.2. Please use '@@storage_engine' instead
+Warning 1287 The syntax '@@table_type' is deprecated and will be removed in MySQL 6.0. Please use '@@storage_engine' instead
create table t1 (a int);
insert into t1 (a) values (1), (2), (3), (4), (5), (6), (7), (8), (9), (10);
update t1 set a='abc';