Commit 79392b93 authored by Sergey Petrunya's avatar Sergey Petrunya

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

- Support "using index for group-by (scanning) " queries
parent cebdf3de
......@@ -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]);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment