diff options
author | igor@rurik.mysql.com <> | 2005-09-06 22:20:11 -0700 |
---|---|---|
committer | igor@rurik.mysql.com <> | 2005-09-06 22:20:11 -0700 |
commit | af9740d0fd82fbcde0237ac08911aaee99fbaa68 (patch) | |
tree | a15c71fa469ce1f2ad833049715ab009a914378a /sql/item_sum.h | |
parent | 81948e621a16abd01d1a790cfafbdc8dd319a3e1 (diff) | |
download | mariadb-git-af9740d0fd82fbcde0237ac08911aaee99fbaa68.tar.gz |
func_gconcat.result, func_gconcat.test:
Added test cases for bug #12863.
item_sum.cc, item_sum.h:
Fixed bug #12863.
Added a flag to Item_func_group_concat set to FALSE after
concatenation of the first element of a group.
Diffstat (limited to 'sql/item_sum.h')
-rw-r--r-- | sql/item_sum.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item_sum.h b/sql/item_sum.h index a3b422565d1..d53d8d861ae 100644 --- a/sql/item_sum.h +++ b/sql/item_sum.h @@ -709,6 +709,7 @@ class Item_func_group_concat : public Item_sum uint arg_count_field; uint field_list_offset; uint count_cut_values; + bool no_appended; /* Following is 0 normal object and pointer to original one for copy (to correctly free resources) |