diff options
author | monty@narttu.mysql.fi <> | 2003-03-19 22:25:44 +0200 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2003-03-19 22:25:44 +0200 |
commit | b883a9c01c9caba9e74bdc6f4f5b57b1a81a0fd4 (patch) | |
tree | abbee7d78d1399086c301a5bd02f3ba4a9e1ea38 /mysql-test/t/heap.test | |
parent | 48a9c1239c6b2b2ba27f8a1a9a0df98af204d53b (diff) | |
parent | 584729430a77280e753cc4bf67d2bb6d7f94a6b8 (diff) | |
download | mariadb-git-b883a9c01c9caba9e74bdc6f4f5b57b1a81a0fd4.tar.gz |
Merge with 4.0.12
Diffstat (limited to 'mysql-test/t/heap.test')
-rw-r--r-- | mysql-test/t/heap.test | 2 |
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; |