diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2011-07-05 21:48:50 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2011-07-05 21:48:50 +0400 |
commit | 9e95a54793920ade348399a74a1e39ea3a27b635 (patch) | |
tree | 1abd88d199fd104a4b0501d7cf9af911232aea3b /mysql-test/r/subselect_sj2.result | |
parent | d93b4c539449e951e25f6c0b1e606040a02c58ad (diff) | |
parent | 05d54b121ca06e54050f4ca818aca56ca5e80890 (diff) | |
download | mariadb-git-9e95a54793920ade348399a74a1e39ea3a27b635.tar.gz |
Merge fix for BUG#803365
Diffstat (limited to 'mysql-test/r/subselect_sj2.result')
-rw-r--r-- | mysql-test/r/subselect_sj2.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/subselect_sj2.result b/mysql-test/r/subselect_sj2.result index 7a770abb474..22847232fce 100644 --- a/mysql-test/r/subselect_sj2.result +++ b/mysql-test/r/subselect_sj2.result @@ -266,10 +266,10 @@ explain select * from t0 where a in (select t2.a+t3.a from t1 left join (t2 join t3) on t2.a=t1.a and t3.a=t1.a); id select_type table type possible_keys key key_len ref rows Extra -1 PRIMARY t0 ALL NULL NULL NULL NULL 10 Start temporary -1 PRIMARY t1 index NULL a 5 NULL 10 Using index; Using join buffer (flat, BNL join) +1 PRIMARY t0 ALL NULL NULL NULL NULL 10 +1 PRIMARY t1 index NULL a 5 NULL 10 Using index 1 PRIMARY t2 ref a a 5 test.t1.a 1 Using where; Using index -1 PRIMARY t3 ref a a 5 test.t1.a 1 Using where; Using index; End temporary +1 PRIMARY t3 ref a a 5 test.t1.a 1 Using where; Using index; FirstMatch(t0) drop table t0, t1,t2,t3; CREATE TABLE t1 ( ID int(11) NOT NULL auto_increment, |