summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/vcol_select_innodb.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2010-10-18 13:33:05 -0700
committerIgor Babaev <igor@askmonty.org>2010-10-18 13:33:05 -0700
commit25f5debdc71105820aceaac25799eb3fc09479cd (patch)
tree8832320275a120a662f4e553941a1bb86e83b667 /mysql-test/suite/vcol/r/vcol_select_innodb.result
parent79087c9e072ea2c1af3f1372d5c37729545f618c (diff)
downloadmariadb-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/suite/vcol/r/vcol_select_innodb.result')
-rw-r--r--mysql-test/suite/vcol/r/vcol_select_innodb.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/vcol/r/vcol_select_innodb.result b/mysql-test/suite/vcol/r/vcol_select_innodb.result
index aa32d91142e..68a9b2a7a63 100644
--- a/mysql-test/suite/vcol/r/vcol_select_innodb.result
+++ b/mysql-test/suite/vcol/r/vcol_select_innodb.result
@@ -64,7 +64,7 @@ a b c
explain select * from t1 where b in (select c from t3);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t3 index c c 5 NULL 3 Using index
-1 PRIMARY t1 ALL NULL NULL NULL NULL 5 Using where; Using join buffer
+1 PRIMARY t1 ALL NULL NULL NULL NULL 5 Using where; Using join buffer (flat, BNL join)
# select_type=PRIMARY, type=range,ref
select * from t1 where c in (select c from t3 where c between -2 and -1);
a b c