diff options
Diffstat (limited to 'mysql-test/t/warnings.test')
-rw-r--r-- | mysql-test/t/warnings.test | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/mysql-test/t/warnings.test b/mysql-test/t/warnings.test index 050449f0f5b..a94380db221 100644 --- a/mysql-test/t/warnings.test +++ b/mysql-test/t/warnings.test @@ -80,6 +80,14 @@ select @@warning_count; # Test for handler type # drop table t1; -create table t1 (id int) type=isam; -alter table t1 type=isam; +create table t1 (id int) engine=isam; +alter table t1 engine=isam; drop table t1; + +# +# Test for deprecated TYPE= syntax +# +create table t1 (id int) type=heap; +alter table t1 type=myisam; +drop table t1; + |