1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

for every deprecated feature say when it will be removed.

restore CREATE TABLE ... TYPE=engine until 5.2
This commit is contained in:
unknown
2006-03-01 21:36:05 +01:00
parent a636ec4dec
commit a28368f2c2
9 changed files with 58 additions and 64 deletions

View File

@@ -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';