summaryrefslogtreecommitdiff
path: root/mysql-test/t/heap.test
diff options
context:
space:
mode:
authorunknown <ramil@mysql.com>2006-02-09 18:23:37 +0400
committerunknown <ramil@mysql.com>2006-02-09 18:23:37 +0400
commit550a988ac94e97c7cb1e26fb44791bdd828ec66b (patch)
tree5b94b99cc99f8467584a5d16d2e6b5b4e449b489 /mysql-test/t/heap.test
parentbd1be0279c4c14a1a4e5856f375ab70258f8c8dc (diff)
parent1a27a433fc6e3eb50b995cd52c11edcb2364d362 (diff)
downloadmariadb-git-550a988ac94e97c7cb1e26fb44791bdd828ec66b.tar.gz
Merge mysql.com:/usr/home/ram/work/4.1.heap
into mysql.com:/usr/home/ram/work/mysql-5.0 mysql-test/t/heap.test: Auto merged mysql-test/r/heap.result: merge
Diffstat (limited to 'mysql-test/t/heap.test')
-rw-r--r--mysql-test/t/heap.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/heap.test b/mysql-test/t/heap.test
index 6a8abdeea26..82294db336d 100644
--- a/mysql-test/t/heap.test
+++ b/mysql-test/t/heap.test
@@ -440,10 +440,10 @@ drop table t1;
# Bug 12796: Record doesn't show when selecting through index
#
CREATE TABLE t1 (a int, key(a)) engine=heap;
-insert delayed into t1 values (0);
+insert into t1 values (0);
delete from t1;
select * from t1;
-insert delayed into t1 values (0), (1);
+insert into t1 values (0), (1);
select * from t1 where a = 0;
drop table t1;