summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap_auto_increment.result
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/r/heap_auto_increment.result
parent28113396ecc3a4594a6f0075e403407d0e1eb6e7 (diff)
downloadmariadb-git-fcf96dbb181a2afbab42ddd1e4a1f0fb2dd2061c.tar.gz
WorkLog#1323
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
Diffstat (limited to 'mysql-test/r/heap_auto_increment.result')
-rw-r--r--mysql-test/r/heap_auto_increment.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/heap_auto_increment.result b/mysql-test/r/heap_auto_increment.result
index 9a5ed57d741..5b04a77e9eb 100644
--- a/mysql-test/r/heap_auto_increment.result
+++ b/mysql-test/r/heap_auto_increment.result
@@ -1,5 +1,5 @@
drop table if exists t1;
-create table t1 (a int not null auto_increment,b int, primary key (a)) type=heap auto_increment=3;
+create table t1 (a int not null auto_increment,b int, primary key (a)) engine=heap auto_increment=3;
insert into t1 values (1,1),(NULL,3),(NULL,4);
delete from t1 where a=4;
insert into t1 values (NULL,5),(NULL,6);
@@ -27,7 +27,7 @@ drop table t1;
create table t1 (
skey tinyint unsigned NOT NULL auto_increment PRIMARY KEY,
sval char(20)
-) type=heap;
+) engine=heap;
insert into t1 values (NULL, "hello");
insert into t1 values (NULL, "hey");
select * from t1;