summaryrefslogtreecommitdiff
path: root/mysql-test/t/heap_auto_increment.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/heap_auto_increment.test')
-rw-r--r--mysql-test/t/heap_auto_increment.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/heap_auto_increment.test b/mysql-test/t/heap_auto_increment.test
index 6f392f6830d..9d0fefa4d52 100644
--- a/mysql-test/t/heap_auto_increment.test
+++ b/mysql-test/t/heap_auto_increment.test
@@ -6,7 +6,7 @@
drop table if exists t1;
--enable_warnings
-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);
@@ -25,7 +25,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;