2011-02-28 17:27:41 -08:00
|
|
|
--source include/have_debug.inc
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Bug #725050: print keyuse info when hash join is used
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
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;
|
2020-01-09 13:38:48 +01:00
|
|
|
SET @saved_dbug = @@SESSION.debug_dbug;
|
2016-04-19 11:08:16 +02:00
|
|
|
set @@debug_dbug= 'd,opt';
|
2011-02-28 17:27:41 -08:00
|
|
|
|
|
|
|
explain select t1.b from t1,t2 where t1.b=t2.a;
|
|
|
|
select t1.b from t1,t2 where t1.b=t2.a;
|
|
|
|
|
|
|
|
set session join_cache_level=default;
|
|
|
|
drop table t1,t2;
|
2020-01-09 13:38:48 +01:00
|
|
|
SET debug_dbug= @saved_dbug;
|