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 /mysql-test/r/warnings.result | |
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 'mysql-test/r/warnings.result')
-rw-r--r-- | mysql-test/r/warnings.result | 2 |
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'; |