summaryrefslogtreecommitdiff
path: root/mysql-test/t/warnings.test
diff options
context:
space:
mode:
authorantony@ltantony.rdg.cyberkinetica.homeunix.net <>2003-12-10 04:31:42 +0000
committerantony@ltantony.rdg.cyberkinetica.homeunix.net <>2003-12-10 04:31:42 +0000
commitfcf96dbb181a2afbab42ddd1e4a1f0fb2dd2061c (patch)
tree786b29c1b82119fc7dc8cadff03c8bd8607d3deb /mysql-test/t/warnings.test
parent28113396ecc3a4594a6f0075e403407d0e1eb6e7 (diff)
downloadmariadb-git-fcf96dbb181a2afbab42ddd1e4a1f0fb2dd2061c.tar.gz
WorkLog#1323
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
Diffstat (limited to 'mysql-test/t/warnings.test')
-rw-r--r--mysql-test/t/warnings.test12
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;
+