1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Make ANALYZE FORMAT=JSON show execution time for filesort element.

This commit is contained in:
Sergei Petrunia
2015-08-07 17:41:35 +03:00
parent afd59b575a
commit 3025c42605
7 changed files with 48 additions and 23 deletions

View File

@@ -210,7 +210,8 @@ public:
Explain_basic_join(root),
message(NULL),
using_temporary(false), using_filesort(false),
time_tracker(is_analyze)
time_tracker(is_analyze),
ops_tracker(is_analyze)
{}
/*
@@ -729,6 +730,8 @@ private:
This is similar to Explain_table_access, except that it is more restrictive.
Also, it can have UPDATE operation options, but currently there aren't any.
Explain_delete inherits from this.
*/
class Explain_update : public Explain_node