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

cleanups and simplifications

This commit is contained in:
Sergei Golubchik
2015-10-02 14:38:06 +02:00
parent 7ca8b4bbfa
commit c93ac0a1c6
5 changed files with 21 additions and 40 deletions

View File

@ -1971,10 +1971,11 @@ public:
SELECT_LEX *select_lex;
bool store_data_in_temp_table;
group_by_handler *handler;
Item *having;
Pushdown_query(SELECT_LEX *select_lex_arg, group_by_handler *handler_arg)
: select_lex(select_lex_arg), store_data_in_temp_table(0),
handler(handler_arg) {}
handler(handler_arg), having(0) {}
~Pushdown_query() { delete handler; }