1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-7836: ANALYZE FORMAT=JSON should provide info about GROUP BY

ANALYZE should also record remove_duplicates() operation.
This commit is contained in:
Sergei Petrunia
2015-06-20 04:20:18 +03:00
parent f33173d19e
commit ebe2bd74fe
5 changed files with 97 additions and 13 deletions

View File

@ -398,6 +398,12 @@ public:
*/
Filesort_tracker *report_sorting(THD *thd);
/*
Report that remove_duplicates() is invoked [on a temp. table].
We don't collect any statistics on this operation, yet.
*/
void report_duplicate_removal();
friend class Iterator;
/*************** Statistics retrieval interface ***************/
bool had_varied_executions() { return varied_executions; }