summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp-error.result
diff options
context:
space:
mode:
authorMagne Mahre <magne.mahre@sun.com>2010-02-09 11:30:50 +0100
committerMagne Mahre <magne.mahre@sun.com>2010-02-09 11:30:50 +0100
commite0fb0d9d018e0bc1a2da9f62a929cf669efd8343 (patch)
tree4feed8ff38dc6aa080e44a2f1600402f0eb53b32 /mysql-test/r/sp-error.result
parent6124451d9534b1a03e58724411c492d9de980cb4 (diff)
downloadmariadb-git-e0fb0d9d018e0bc1a2da9f62a929cf669efd8343.tar.gz
Bug#47974 'TYPE=storage_engine' is deprecated and will be
removed in MySQL 6.0 CREATE TABLE... TYPE= returns the warning "The syntax 'TYPE=storage_engine' is deprecated and will be removed in MySQL 6.0. Please use 'ENGINE=storage_engine' instead" This syntax is deprecated already from version 5.4.4, so the message has been changed. In addition, the deprecation macro was changed to reflect the ServerPT decision not to include version number in the warning message. A number of test result files have been changed as a consequence of the change in the deprecation macro.
Diffstat (limited to 'mysql-test/r/sp-error.result')
-rw-r--r--mysql-test/r/sp-error.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/sp-error.result b/mysql-test/r/sp-error.result
index b3968ea7eb6..ec2ba5747c3 100644
--- a/mysql-test/r/sp-error.result
+++ b/mysql-test/r/sp-error.result
@@ -1643,7 +1643,7 @@ create table t1 (a int) type=MyISAM;
drop table t1;
end|
Warnings:
-Warning 1287 The syntax 'TYPE=storage_engine' is deprecated and will be removed in MySQL 6.0. Please use 'ENGINE=storage_engine' instead
+Warning 1287 'TYPE=storage_engine' is deprecated and will be removed in a future release. Please use 'ENGINE=storage_engine' instead
call p1();
call p1();
drop procedure p1;