Browse Source

[SHOW] EXPLAIN UPDATE/DELETE, code re-structuring

- Support "using index for group-by (scanning) " queries
pull/3/head
Sergey Petrunya 13 years ago
parent
commit
79392b9383
  1. 6
      sql/opt_qpf.cc

6
sql/opt_qpf.cc

@ -497,6 +497,12 @@ void QPF_table_access::append_tag_name(String *str, enum Extra_tag tag)
str->append(extra_tag_text[tag]);
break;
}
case ET_USING_INDEX_FOR_GROUP_BY:
{
str->append(extra_tag_text[tag]);
str->append(loose_scan_type);
break;
}
default:
str->append(extra_tag_text[tag]);
}

Loading…
Cancel
Save