summaryrefslogtreecommitdiff
path: root/sql/sql_lex.h
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-09-17 16:03:40 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-09-17 16:03:40 +0400
commitae6e95c498db4800e95fdd70fadaa608f6aa9f3f (patch)
treecc86bd89e372ff7786bc76bcb0fd0d7ffa577ed4 /sql/sql_lex.h
parentabf4a910f29b230efbb42eda1199533fb5b93173 (diff)
downloadmariadb-git-ae6e95c498db4800e95fdd70fadaa608f6aa9f3f.tar.gz
Code cleanup.
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r--sql/sql_lex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h
index a84a452ef68..d06f31bd53f 100644
--- a/sql/sql_lex.h
+++ b/sql/sql_lex.h
@@ -2397,8 +2397,8 @@ public:
/* Set this plan to be a plan to do nothing because of impossible WHRE*/
void set_impossible_where() { impossible_where= true; }
- void save_query_plan_footprint(QPF_query *query);
- void save_query_plan_footprint_intern(QPF_query *query, QPF_update *qpf);
+ void save_qpf(QPF_query *query);
+ void save_qpf_intern(QPF_query *query, QPF_update *qpf);
virtual ~Update_plan() {}
Update_plan() : impossible_where(false), using_filesort(false) {}
@@ -2422,7 +2422,7 @@ public:
table_rows= rows_arg;
}
- void save_query_plan_footprint(QPF_query *query);
+ void save_qpf(QPF_query *query);
};