1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Code cleanup.

This commit is contained in:
Sergey Petrunya
2013-09-17 16:03:40 +04:00
parent abf4a910f2
commit ae6e95c498
6 changed files with 21 additions and 47 deletions

View File

@ -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);
};