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/row.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/row.result')
-rw-r--r-- | mysql-test/r/row.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/row.result b/mysql-test/r/row.result index 2962123fcb2..9b88cc59e31 100644 --- a/mysql-test/r/row.result +++ b/mysql-test/r/row.result @@ -377,7 +377,7 @@ a b a b c EXPLAIN EXTENDED SELECT * FROM t1,t2 WHERE (t1.a-1,t1.b)=(t2.a-1,t2.b+1); id select_type table type possible_keys key key_len ref rows filtered Extra 1 SIMPLE t1 index NULL PRIMARY 8 NULL 6 100.00 Using index -1 SIMPLE t2 index NULL PRIMARY 12 NULL 7 100.00 Using where; Using index; Using join buffer +1 SIMPLE t2 index NULL PRIMARY 12 NULL 7 100.00 Using where; Using index; Using join buffer (flat, BNL join) Warnings: Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t2`.`a` AS `a`,`test`.`t2`.`b` AS `b`,`test`.`t2`.`c` AS `c` from `test`.`t1` join `test`.`t2` where (((`test`.`t1`.`a` - 1) = (`test`.`t2`.`a` - 1)) and (`test`.`t1`.`b` = (`test`.`t2`.`b` + 1))) SELECT * FROM t1,t2 WHERE (t1.a-1,t1.b)=(t2.a-1,t2.b+1); |