summaryrefslogtreecommitdiff
path: root/mysql-test/main/in_subq_cond_pushdown.result
diff options
context:
space:
mode:
authorGalina Shalygina <galina.shalygina@mariadb.com>2018-07-29 14:40:58 +0200
committerGalina Shalygina <galina.shalygina@mariadb.com>2018-07-29 14:40:58 +0200
commitaee3d162d236412bd1b8146f62dca299ccd71017 (patch)
treef7c0fa398a665512ee89121a7acb2753f05fe30c /mysql-test/main/in_subq_cond_pushdown.result
parent2a3d3e052f63cca4548c5bf8ef48040ecc39c5cf (diff)
downloadmariadb-git-aee3d162d236412bd1b8146f62dca299ccd71017.tar.gz
MDEV-16730: Server crashes in Bitmap<64u>::merge
The problem appears because of the pushdown of a non-pushable condition 'cond' into the materialized derived table/view. To prevent pushdown a map of tables that are used in 'cond' should be updated. This call is missing because of the MDEV-12387 changes. The call is added in the setup_jtbm_semi_joins() method.
Diffstat (limited to 'mysql-test/main/in_subq_cond_pushdown.result')
-rw-r--r--mysql-test/main/in_subq_cond_pushdown.result17
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/main/in_subq_cond_pushdown.result b/mysql-test/main/in_subq_cond_pushdown.result
index 06b7de7a5ac..4ad4180ff52 100644
--- a/mysql-test/main/in_subq_cond_pushdown.result
+++ b/mysql-test/main/in_subq_cond_pushdown.result
@@ -3814,3 +3814,20 @@ FROM t2
WHERE t2.b IN (SELECT MIN(t1.a) from t1);
b
DROP TABLE t1, t2;
+#
+# MDEV-16730: server fault caused by pushdown into the derived table
+# condition that joins IN subquery and parent select
+#
+CREATE TABLE t1 (a INT);
+INSERT INTO t1 VALUES (1), (2), (3);
+SELECT *
+FROM (SELECT DISTINCT * FROM t1) AS tbl
+WHERE tbl.a IN
+(
+SELECT COUNT(t1.a)
+FROM t1
+WHERE (t1.a!=1)
+);
+a
+2
+DROP TABLE t1;