1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Delete: mysql-test/t/test_heap.test

This commit is contained in:
pappa@c-5608e253.1238-1-64736c10.cust.bredbandsbolaget.se
2005-11-22 13:04:51 -05:00
parent 9cae862623
commit ba9c2ccae7

View File

@@ -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