[MDEV-16715] Add accessors for Item_sum and Item_func_group_concat classes. Created: 2018-07-10  Updated: 2018-11-27  Resolved: 2018-11-27

Status: Closed
Project: MariaDB Server
Component/s: OTHER
Fix Version/s: 10.4.1

Type: Task Priority: Critical
Reporter: Roman Assignee: Alexander Barkov
Resolution: Fixed Votes: 0
Labels: None

Issue Links:
PartOf
is part of MCOL-1532 Run ColumnStore with vanilla MariaDB ... Closed

 Description   

ColumStore uses these accessors to get private attributes for semantic parsing.

class Item_sum :public Item_func_or_sum
...
Item **get_orig_args() { return orig_args; }
 
class Item_func_group_concat: Item_sum
...
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; }

We need these accessors or a way to obtain the mentioned attributes.


Generated at Thu Feb 08 08:31:01 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.