diff options
Diffstat (limited to 'mysql-test/r/warnings.result')
-rw-r--r-- | mysql-test/r/warnings.result | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/mysql-test/r/warnings.result b/mysql-test/r/warnings.result index 1942f1a25bb..2769e284a95 100644 --- a/mysql-test/r/warnings.result +++ b/mysql-test/r/warnings.result @@ -119,10 +119,17 @@ select @@warning_count; @@warning_count 50 drop table t1; -create table t1 (id int) type=isam; +create table t1 (id int) engine=isam; Warnings: Warning 1265 Using storage engine MyISAM for table 't1' -alter table t1 type=isam; +alter table t1 engine=isam; Warnings: Warning 1265 Using storage engine MyISAM for table 't1' drop table t1; +create table t1 (id int) type=heap; +Warnings: +Warning 1286 'TYPE=database_engine' is deprecated. Use 'ENGINE=database_engine' instead. +alter table t1 type=myisam; +Warnings: +Warning 1286 'TYPE=database_engine' is deprecated. Use 'ENGINE=database_engine' instead. +drop table t1; |