summaryrefslogtreecommitdiff
path: root/mysql-test/r/explain_non_select.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/explain_non_select.result')
-rw-r--r--mysql-test/r/explain_non_select.result13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/explain_non_select.result b/mysql-test/r/explain_non_select.result
index 00ca481147b..0eee7ee9b1e 100644
--- a/mysql-test/r/explain_non_select.result
+++ b/mysql-test/r/explain_non_select.result
@@ -219,3 +219,16 @@ OK
OK
drop function f1;
drop table t1;
+#
+# MDEV-7038: Assertion `status_var.memory_used == 0' failed in THD::~THD()
+# on disconnect after executing EXPLAIN for multi-table UPDATE
+#
+CREATE TABLE t1 (a INT);
+CREATE VIEW v1 AS SELECT * FROM t1;
+INSERT INTO t1 VALUES (1),(2);
+EXPLAIN UPDATE v1, mysql.user SET v1.a = v1.a + 1;
+id select_type table type possible_keys key key_len ref rows Extra
+1 SIMPLE t1 ALL NULL NULL NULL NULL 2
+1 SIMPLE user index NULL PRIMARY 420 NULL 4 Using index
+DROP TABLE t1;
+DROP VIEW v1;