diff options
author | unknown <serg@serg.mylan> | 2006-03-01 21:36:05 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2006-03-01 21:36:05 +0100 |
commit | a28368f2c2ce46258a8ead05af2e4d1b5cce7a38 (patch) | |
tree | 45b7fa34e4dd30896530057e23903f45ab164a78 /mysql-test/r/warnings.result | |
parent | a636ec4dec6a5f2dee1ce7227b6e1146aa2c72e7 (diff) | |
download | mariadb-git-a28368f2c2ce46258a8ead05af2e4d1b5cce7a38.tar.gz |
for every deprecated feature say when it will be removed.
restore CREATE TABLE ... TYPE=engine until 5.2
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 9f9d3b53063..99ed14951a4 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 'table_type' is deprecated; use 'storage_engine' instead +Warning 1540 The syntax 'table_type' is deprecated and will be removed in MySQL 5.2. 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'; |