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/r/heap.result | |
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/r/heap.result')
-rw-r--r-- | mysql-test/r/heap.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result index e3b9f7db984..6bb9d0c87ee 100644 --- a/mysql-test/r/heap.result +++ b/mysql-test/r/heap.result @@ -297,11 +297,11 @@ insert into t1 values ("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd ERROR 23000: Duplicate entry 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl' for key 1 drop table t1; 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; a -insert delayed into t1 values (0), (1); +insert into t1 values (0), (1); select * from t1 where a = 0; a 0 |