mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
1efdd5a572
(and to follow the naming conventons). keep old debug variable, but mark it as deprecated.
18 lines
625 B
Text
18 lines
625 B
Text
#
|
|
# Bug #725050: print keyuse info when hash join is used
|
|
#
|
|
create table t1 (a int, b int);
|
|
insert into t1 values (2,2), (1,1);
|
|
create table t2 (a int);
|
|
insert into t2 values (2), (3);
|
|
set session join_cache_level=3;
|
|
set @@debug_dbug= 'd:t:O,/tmp/trace.out';
|
|
explain select t1.b from t1,t2 where t1.b=t2.a;
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using where
|
|
1 SIMPLE t2 hash_ALL NULL #hash#$hj 5 test.t1.b 2 Using where; Using join buffer (flat, BNLH join)
|
|
select t1.b from t1,t2 where t1.b=t2.a;
|
|
b
|
|
2
|
|
set session join_cache_level=default;
|
|
drop table t1,t2;
|