diff options
author | Anurag Shekhar <anurag.shekhar@sun.com> | 2009-05-06 15:00:14 +0530 |
---|---|---|
committer | Anurag Shekhar <anurag.shekhar@sun.com> | 2009-05-06 15:00:14 +0530 |
commit | 6a3d8ad7270ba939c4d9c95a38f571a959629bf8 (patch) | |
tree | fa4f8d41c441672db8ddbdc5d3611990578b9255 /mysql-test/r/heap_btree.result | |
parent | ce33c94849e5cbfb628be8d7a5c9a3773084c1ed (diff) | |
parent | 0a6cf9ed5a46954d0ff4a01804df22a7ed2713bd (diff) | |
download | mariadb-git-6a3d8ad7270ba939c4d9c95a38f571a959629bf8.tar.gz |
merging with local fix.
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r-- | mysql-test/r/heap_btree.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/heap_btree.result b/mysql-test/r/heap_btree.result index 9db03855c01..7ad0f212d99 100644 --- a/mysql-test/r/heap_btree.result +++ b/mysql-test/r/heap_btree.result @@ -336,4 +336,11 @@ a b NULL NULL NULL 1 drop table t1; +# +# bug#39918 - memory (heap) engine crashing while executing self join with delete +# +CREATE TABLE t1(a INT, KEY USING BTREE (a)) ENGINE=MEMORY; +INSERT INTO t1 VALUES(1),(1); +DELETE a1 FROM t1 AS a1, t1 AS a2 WHERE a1.a=a2.a; +DROP TABLE t1; End of 5.0 tests |