diff options
Diffstat (limited to 'mysql-test/r/join_optimizer.result')
-rw-r--r-- | mysql-test/r/join_optimizer.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/join_optimizer.result b/mysql-test/r/join_optimizer.result index 42c4c220e8c..5411b046766 100644 --- a/mysql-test/r/join_optimizer.result +++ b/mysql-test/r/join_optimizer.result @@ -32,6 +32,6 @@ explain SELECT STRAIGHT_JOIN g.id FROM t2 a, t3 g USE INDEX(groups_dt) WHERE g.domain = 'queue' AND g.type = a.type; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE a ALL NULL NULL NULL NULL 2 -1 SIMPLE g ref groups_dt groups_dt 70 const,test.a.type 13 Using index condition +1 SIMPLE a ALL NULL NULL NULL NULL 2 Using where +1 SIMPLE g ref groups_dt groups_dt 70 const,test.a.type 13 Using where drop table t0,t1,t2,t3; |