File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 554
554
explain select sql_big_result distinct t1.a from t1,t2 order by t2.a;
555
555
id select_type table type possible_keys key key_len ref rows Extra
556
556
1 SIMPLE t1 system NULL NULL NULL NULL 1 Using temporary
557
- 1 SIMPLE t2 index NULL PRIMARY 4 NULL 2 Using index; Distinct
557
+ 1 SIMPLE t2 index NULL PRIMARY 4 NULL 2 Using index
558
558
explain select distinct t1.a from t1,t2 order by t2.a;
559
559
id select_type table type possible_keys key key_len ref rows Extra
560
560
1 SIMPLE t1 system NULL NULL NULL NULL 1 Using temporary
561
- 1 SIMPLE t2 index NULL PRIMARY 4 NULL 2 Using index; Distinct
561
+ 1 SIMPLE t2 index NULL PRIMARY 4 NULL 2 Using index
562
562
drop table t1,t2;
563
563
create table t1 (
564
564
c1 varchar(32),
You can’t perform that action at this time.
0 commit comments