summaryrefslogtreecommitdiff
path: root/sql/sql_explain.h
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-10-05 13:19:45 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-10-05 13:19:45 +0400
commit72bc6d7364f7cf6cae49c74cf1e56832053f91eb (patch)
tree063f21a3c6205722b5d14b76a43b6543bce83808 /sql/sql_explain.h
parent6a7f8af3f9ca95163cba3c7efdf04944378fb8d3 (diff)
downloadmariadb-git-72bc6d7364f7cf6cae49c74cf1e56832053f91eb.tar.gz
MDEV-3798: EXPLAIN UPDATE/DELETE
- Address review feedback: more renames
Diffstat (limited to 'sql/sql_explain.h')
-rw-r--r--sql/sql_explain.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/sql_explain.h b/sql/sql_explain.h
index ef36cb4a44d..66e8b1be109 100644
--- a/sql/sql_explain.h
+++ b/sql/sql_explain.h
@@ -172,7 +172,7 @@ public:
bool using_filesort;
};
-class QPF_delete;
+class Explain_delete;
/*
@@ -226,8 +226,8 @@ public:
Explain_union *get_union(uint select_id);
- /* QPF_delete inherits from QPF_update */
- QPF_update *upd_del_plan;
+ /* Explain_delete inherits from Explain_update */
+ Explain_update *upd_del_plan;
/* Produce a tabular EXPLAIN output */
int print_explain(select_result_sink *output, uint8 explain_flags);
@@ -448,7 +448,7 @@ private:
Also, it can have UPDATE operation options, but currently there aren't any.
*/
-class QPF_update : public Explain_node
+class Explain_update : public Explain_node
{
public:
virtual enum explain_node_type get_type() { return EXPLAIN_UPDATE; }
@@ -479,10 +479,10 @@ public:
/*
- Query Plan Footprint for a single-table DELETE.
+ Explain data of a single-table DELETE.
*/
-class QPF_delete: public QPF_update
+class Explain_delete: public Explain_update
{
public:
/*