1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-14592: Custom Aggregates Usage Status Variable

Introduced new status variable for custom aggregate functions.
This commit is contained in:
Varun Gupta
2018-03-30 01:25:48 +03:00
parent 87ee85634c
commit cbc45d2914
9 changed files with 180 additions and 0 deletions

View File

@ -2266,6 +2266,7 @@ void st_select_lex::init_query()
select_list_tables= 0;
m_non_agg_field_used= false;
m_agg_func_used= false;
m_custom_agg_func_used= false;
window_specs.empty();
window_funcs.empty();
tvc= 0;
@ -2305,6 +2306,7 @@ void st_select_lex::init_select()
merged_into= 0;
m_non_agg_field_used= false;
m_agg_func_used= false;
m_custom_agg_func_used= false;
name_visibility_map= 0;
with_dep= 0;
join= 0;