diff options
Diffstat (limited to 'mysql-test/r/table_elim_debug.result')
-rw-r--r-- | mysql-test/r/table_elim_debug.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/table_elim_debug.result b/mysql-test/r/table_elim_debug.result index ae49b1433fd..973462e0bd1 100644 --- a/mysql-test/r/table_elim_debug.result +++ b/mysql-test/r/table_elim_debug.result @@ -10,7 +10,7 @@ set optimizer_switch='table_elimination=off'; explain select t1.a from t1 left join t2 on t2.a=t1.a; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 ALL NULL NULL NULL NULL 4 -1 SIMPLE t2 eq_ref PRIMARY PRIMARY 4 test.t1.a 1 Using where; Using index +1 SIMPLE t2 hash_index PRIMARY #hash#PRIMARY:PRIMARY 4:4 test.t1.a 2 Using where; Using index; Using join buffer (flat, BNLH join) set optimizer_switch='table_elimination=on'; explain select t1.a from t1 left join t2 on t2.a=t1.a; id select_type table type possible_keys key key_len ref rows Extra |