summaryrefslogtreecommitdiff
path: root/mysql-test/t/heap.test
diff options
context:
space:
mode:
authormonty@narttu.mysql.fi <>2003-03-19 22:25:44 +0200
committermonty@narttu.mysql.fi <>2003-03-19 22:25:44 +0200
commitb883a9c01c9caba9e74bdc6f4f5b57b1a81a0fd4 (patch)
treeabbee7d78d1399086c301a5bd02f3ba4a9e1ea38 /mysql-test/t/heap.test
parent48a9c1239c6b2b2ba27f8a1a9a0df98af204d53b (diff)
parent584729430a77280e753cc4bf67d2bb6d7f94a6b8 (diff)
downloadmariadb-git-b883a9c01c9caba9e74bdc6f4f5b57b1a81a0fd4.tar.gz
Merge with 4.0.12
Diffstat (limited to 'mysql-test/t/heap.test')
-rw-r--r--mysql-test/t/heap.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/heap.test b/mysql-test/t/heap.test
index cd5dbd5afbe..22d9e57a574 100644
--- a/mysql-test/t/heap.test
+++ b/mysql-test/t/heap.test
@@ -20,7 +20,7 @@ select * from t1;
alter table t1 add c int not null, add key (c,a);
drop table t1;
-create table t1 (a int not null,b int not null, primary key (a)) type=heap comment="testing heaps";
+create table t1 (a int not null,b int not null, primary key (a)) type=memory comment="testing heaps";
insert into t1 values(1,1),(2,2),(3,3),(4,4);
delete from t1 where a > 0;
select * from t1;