summaryrefslogtreecommitdiff
path: root/mysql-test/r/subselect_no_semijoin.result
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2016-02-21 22:00:58 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2016-05-04 19:46:29 +0200
commitfba385e3b19149a4ec521d85b9db7717d22e3952 (patch)
tree4e01c73429a107f954768ec35e01d43292bec251 /mysql-test/r/subselect_no_semijoin.result
parenta02d4023db42755b5cb7d0ccb0543fbe94d1b628 (diff)
downloadmariadb-git-fba385e3b19149a4ec521d85b9db7717d22e3952.tar.gz
MDEV-9487: Server crashes in Time_and_counter_tracker::incr_loops with UNION in ALL subquery
Do not mark subquery as inexpensive when it is not optimized.
Diffstat (limited to 'mysql-test/r/subselect_no_semijoin.result')
-rw-r--r--mysql-test/r/subselect_no_semijoin.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/subselect_no_semijoin.result b/mysql-test/r/subselect_no_semijoin.result
index e0d62ac6d14..43d191b1225 100644
--- a/mysql-test/r/subselect_no_semijoin.result
+++ b/mysql-test/r/subselect_no_semijoin.result
@@ -7138,5 +7138,17 @@ sq
NULL
drop view v2;
drop table t1,t2;
+#
+# MDEV-9487: Server crashes in Time_and_counter_tracker::incr_loops
+# with UNION in ALL subquery
+#
+SET NAMES utf8;
+CREATE TABLE t1 (f VARCHAR(8)) ENGINE=MyISAM;
+INSERT INTO t1 VALUES ('foo');
+SELECT f FROM t1 WHERE f > ALL ( SELECT 'bar' UNION SELECT 'baz' );
+f
+foo
+drop table t1;
+SET NAMES default;
set @optimizer_switch_for_subselect_test=null;
set @join_cache_level_for_subselect_test=NULL;