summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap_btree.result
diff options
context:
space:
mode:
authorAnurag Shekhar <anurag.shekhar@sun.com>2009-05-06 15:00:14 +0530
committerAnurag Shekhar <anurag.shekhar@sun.com>2009-05-06 15:00:14 +0530
commitb1a02aef5096ea386597bc4b7bffff5fb09c3b27 (patch)
treefa4f8d41c441672db8ddbdc5d3611990578b9255 /mysql-test/r/heap_btree.result
parent3636eab703213bde361dbd0040c205c21ee540b4 (diff)
parent69fcfa67d3a28574498b6e438fc89f0db5ba12df (diff)
downloadmariadb-git-b1a02aef5096ea386597bc4b7bffff5fb09c3b27.tar.gz
merging with local fix.
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r--mysql-test/r/heap_btree.result7
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