summaryrefslogtreecommitdiff
path: root/mysql-test/main/func_debug.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2019-03-21 13:43:17 +0400
committerAlexander Barkov <bar@mariadb.com>2019-03-22 07:28:59 +0400
commitf4484dfdbf2d78b0f357916ebd8ade024dd73c09 (patch)
tree680aca6e1cf1290efd65fa5fa53e936169394422 /mysql-test/main/func_debug.result
parent482710b20c28e2cdc598dc37468cc5dc06c53ac1 (diff)
downloadmariadb-git-f4484dfdbf2d78b0f357916ebd8ade024dd73c09.tar.gz
MDEV-19008 Slow EXPLAIN SELECT ... WHERE col IN (const1,const2,(subquery))
Diffstat (limited to 'mysql-test/main/func_debug.result')
-rw-r--r--mysql-test/main/func_debug.result19
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/main/func_debug.result b/mysql-test/main/func_debug.result
index 7fcf522abba..e2bf0ca8df3 100644
--- a/mysql-test/main/func_debug.result
+++ b/mysql-test/main/func_debug.result
@@ -1655,3 +1655,22 @@ Note 1105 DBUG: [1] arg=2 handler=0 (time)
Note 1105 DBUG: [2] arg=3 handler=2 (datetime)
SET SESSION debug_dbug="-d,Predicant_to_list_comparator";
SET SESSION debug_dbug="-d,Item_func_in";
+#
+# MDEV-19008 Slow EXPLAIN SELECT ... WHERE col IN (const1,const2,(subquery))
+#
+SET SESSION debug_dbug="+d,Item_subselect";
+CREATE TABLE t1 (a INT);
+INSERT INTO t1 VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
+EXPLAIN SELECT * FROM t1 WHERE a IN (1,2,(SELECT MAX(a) FROM t1));
+id select_type table type possible_keys key key_len ref rows Extra
+1 PRIMARY t1 ALL NULL NULL NULL NULL 10 Using where
+2 SUBQUERY t1 ALL NULL NULL NULL NULL 10
+SELECT * FROM t1 WHERE a IN (1,2,(SELECT MAX(a) FROM t1));
+a
+1
+2
+9
+Warnings:
+Note 1105 DBUG: Item_subselect::exec (select max(`test`.`t1`.`a`) from `test`.`t1`)
+DROP TABLE t1;
+SET SESSION debug_dbug="-d,Item_subselect";