diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-07-26 08:54:44 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-07-26 09:19:52 +0300 |
commit | 93b6552182740d1a66cf41c30811e7275d31b07f (patch) | |
tree | 96341a5a841bfd6b53981b9b96b1cd5ef6e7f3d5 /mysql-test/main/subselect.result | |
parent | 294a426088bd7167f42388e7e76ff8d42df7d6be (diff) | |
parent | 0f90728bc0f8bc946a61500801b23f8a316e73d5 (diff) | |
download | mariadb-git-93b6552182740d1a66cf41c30811e7275d31b07f.tar.gz |
Merge 10.2 into 10.3
Diffstat (limited to 'mysql-test/main/subselect.result')
-rw-r--r-- | mysql-test/main/subselect.result | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/main/subselect.result b/mysql-test/main/subselect.result index 1c087a3199c..2f7c5039c67 100644 --- a/mysql-test/main/subselect.result +++ b/mysql-test/main/subselect.result @@ -7239,6 +7239,22 @@ a 5 SET @@optimizer_switch= @optimiser_switch_save; DROP TABLE t1, t2, t3; +# +# MDEV-16820: impossible where with inexpensive subquery +# +create table t1 (a int) engine=myisam; +insert into t1 values (3), (1), (7); +create table t2 (b int, index idx(b)); +insert into t2 values (2), (5), (3), (2); +explain select * from t1 where (select max(b) from t2) = 10; +id select_type table type possible_keys key key_len ref rows Extra +1 PRIMARY NULL NULL NULL NULL NULL NULL NULL Impossible WHERE +2 SUBQUERY NULL NULL NULL NULL NULL NULL NULL Select tables optimized away +explain select * from t1 where (select max(b) from t2) = 10 and t1.a > 3; +id select_type table type possible_keys key key_len ref rows Extra +1 PRIMARY NULL NULL NULL NULL NULL NULL NULL Impossible WHERE +2 SUBQUERY NULL NULL NULL NULL NULL NULL NULL Select tables optimized away +drop table t1,t2; End of 5.5 tests # End of 10.0 tests # |