diff options
author | Igor Babaev <igor@askmonty.org> | 2010-10-18 13:33:05 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2010-10-18 13:33:05 -0700 |
commit | 25f5debdc71105820aceaac25799eb3fc09479cd (patch) | |
tree | 8832320275a120a662f4e553941a1bb86e83b667 /mysql-test/r/ssl.result | |
parent | 79087c9e072ea2c1af3f1372d5c37729545f618c (diff) | |
download | mariadb-git-25f5debdc71105820aceaac25799eb3fc09479cd.tar.gz |
MWL#128: Added into EXPLAIN output info about types of the used join buffers and
about the employed join algorithms.
Refactored constructors of the JOIN_CACHE* classes.
Diffstat (limited to 'mysql-test/r/ssl.result')
-rw-r--r-- | mysql-test/r/ssl.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/ssl.result b/mysql-test/r/ssl.result index ca845e5ed91..1a52571c2d7 100644 --- a/mysql-test/r/ssl.result +++ b/mysql-test/r/ssl.result @@ -1432,7 +1432,7 @@ companynr companynr explain select distinct t2.companynr,t4.companynr from t2,t4 where t2.companynr=t4.companynr+1; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t4 index NULL PRIMARY 1 NULL 12 Using index; Using temporary -1 SIMPLE t2 ALL NULL NULL NULL NULL 1199 Using where; Using join buffer +1 SIMPLE t2 ALL NULL NULL NULL NULL 1199 Using where; Using join buffer (flat, BNL join) select t2.fld1,t2.companynr,fld3,period from t3,t2 where t2.fld1 = 38208 and t2.fld1=t3.t2nr and period = 1008 or t2.fld1 = 38008 and t2.fld1 =t3.t2nr and period = 1008; fld1 companynr fld3 period 038008 37 reporters 1008 |