Commit a2991b9e authored by unknown's avatar unknown
Browse files

Delete: mysql-test/t/test_heap.test

parent 09c4976c
Loading
Loading
Loading
Loading

mysql-test/t/test_heap.test

deleted100644 → 0
+0 −20
Original line number Diff line number Diff line
#
# 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