From ba9c2ccae71885fecaa8fa1faa7cdcf2c14e5f2c Mon Sep 17 00:00:00 2001 From: "pappa@c-5608e253.1238-1-64736c10.cust.bredbandsbolaget.se" <> Date: Tue, 22 Nov 2005 13:04:51 -0500 Subject: [PATCH] Delete: mysql-test/t/test_heap.test --- mysql-test/t/test_heap.test | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 mysql-test/t/test_heap.test diff --git a/mysql-test/t/test_heap.test b/mysql-test/t/test_heap.test deleted file mode 100644 index 851c376ba38..00000000000 --- a/mysql-test/t/test_heap.test +++ /dev/null @@ -1,20 +0,0 @@ -# -# Test of heap tables. -# - ---disable_warnings -drop table if exists t1; ---enable_warnings - -# -# 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); -delete from t1; -select * from t1; -insert delayed into t1 values (0), (1); -select * from t1 where a = 0; -drop table t1; - -# End of 4.1 tests