diff options
author | unknown <ramil@mysql.com> | 2006-02-08 16:00:39 +0400 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2006-02-08 16:00:39 +0400 |
commit | 1a27a433fc6e3eb50b995cd52c11edcb2364d362 (patch) | |
tree | 4df205e4f60a22e150d036aefc56df6f1a577566 /mysql-test/t/heap.test | |
parent | 2408644096a8d35976710bd66cad764fe3322915 (diff) | |
download | mariadb-git-1a27a433fc6e3eb50b995cd52c11edcb2364d362.tar.gz |
Removed 'delayed' to make the test deterministic (as the bug itself has nothing to do with 'delayed').
Diffstat (limited to 'mysql-test/t/heap.test')
-rw-r--r-- | mysql-test/t/heap.test | 4 |
1 files changed, 2 insertions, 2 deletions
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; |