diff options
author | Roman Nozdrin <drrtuy@gmail.com> | 2018-07-10 21:51:51 +0300 |
---|---|---|
committer | Roman Nozdrin <roman.nozdrin@mariadb.com> | 2018-07-10 21:51:51 +0300 |
commit | 4f74adaca9a62999595d55000c2e692689808ecc (patch) | |
tree | 5748127497518e42145baad202c095ba202b7b0b /sql/item_sum.h | |
parent | bb045e7931c451b228ffc5bcdb1791a31eb0c852 (diff) | |
download | mariadb-git-10.2-w-columnstore.tar.gz |
MCOL-1532 Added accessors columnstore uses.10.2-w-columnstore
Diffstat (limited to 'sql/item_sum.h')
-rw-r--r-- | sql/item_sum.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/item_sum.h b/sql/item_sum.h index 5c446e5779d..19d9268868c 100644 --- a/sql/item_sum.h +++ b/sql/item_sum.h @@ -579,6 +579,7 @@ public: void mark_as_window_func_sum_expr() { window_func_sum_expr_flag= true; } bool is_window_func_sum_expr() { return window_func_sum_expr_flag; } virtual void setup_caches(THD *thd) {}; + Item **get_orig_args() { return orig_args; } }; @@ -1687,6 +1688,11 @@ public: { context= (Name_resolution_context *)cntx; return FALSE; } Item *get_copy(THD *thd, MEM_ROOT *mem_root) { return get_item_copy<Item_func_group_concat>(thd, mem_root, this); } + bool is_distinct() { return distinct; } + uint count_field() { return arg_count_field; } + uint order_field() { return arg_count_order; } + String* str_separator() { return separator; } + ORDER** get_order() { return order; } }; #endif /* ITEM_SUM_INCLUDED */ |