From 1a27a433fc6e3eb50b995cd52c11edcb2364d362 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 8 Feb 2006 16:00:39 +0400 Subject: Removed 'delayed' to make the test deterministic (as the bug itself has nothing to do with 'delayed'). --- mysql-test/t/heap.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mysql-test/t/heap.test') diff --git a/mysql-test/t/heap.test b/mysql-test/t/heap.test index a8128b79e3b..50147b4182d 100644 --- a/mysql-test/t/heap.test +++ b/mysql-test/t/heap.test @@ -238,10 +238,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; -- cgit v1.2.1