diff options
author | bell@laptop.sanja.is.com.ua <> | 2003-10-12 17:56:05 +0300 |
---|---|---|
committer | bell@laptop.sanja.is.com.ua <> | 2003-10-12 17:56:05 +0300 |
commit | ddf4d1e5292f226f266a486b84c70e01ec1f93fe (patch) | |
tree | 2d243d69c4c8bafa98d2f0bd9b6ed43fea552637 /sql/item_sum.h | |
parent | d6d6c5e1bb78215da668634310f592a9b4263db1 (diff) | |
download | mariadb-git-ddf4d1e5292f226f266a486b84c70e01ec1f93fe.tar.gz |
fixed printability of Items (all items except subselects)
(SCRUM) (WL#1274)
Diffstat (limited to 'sql/item_sum.h')
-rw-r--r-- | sql/item_sum.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/item_sum.h b/sql/item_sum.h index d6184bcdbac..36b38c22e08 100644 --- a/sql/item_sum.h +++ b/sql/item_sum.h @@ -238,6 +238,7 @@ class Item_sum_count_distinct :public Item_sum_int void make_unique(); Item *copy_or_same(THD* thd); void no_rows_in_result() {} + void print(String *str); }; @@ -736,4 +737,5 @@ class Item_func_group_concat : public Item_sum String* val_str(String* str); Item *copy_or_same(THD* thd); void no_rows_in_result() {} + void print(String *str); }; |