summaryrefslogtreecommitdiff
path: root/sql/item_sum.h
diff options
context:
space:
mode:
authorunknown <vva@eagle.mysql.r18.ru>2003-10-03 17:22:17 -0400
committerunknown <vva@eagle.mysql.r18.ru>2003-10-03 17:22:17 -0400
commitc9c6ae3872af0758f50c3b302bc81fe6e7d5c603 (patch)
treef4566dc50ebdba1a4e9161495ca37d4d3e31d15e /sql/item_sum.h
parent8094305c86f7785b18b453298f781bfff7c7550e (diff)
downloadmariadb-git-c9c6ae3872af0758f50c3b302bc81fe6e7d5c603.tar.gz
fixed bug with Item_sum_min/Item_sum_max from test func_gconcat.test
Diffstat (limited to 'sql/item_sum.h')
-rw-r--r--sql/item_sum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_sum.h b/sql/item_sum.h
index 78d887782e2..c6fed46a338 100644
--- a/sql/item_sum.h
+++ b/sql/item_sum.h
@@ -387,7 +387,7 @@ class Item_sum_hybrid :public Item_sum
Item_sum(thd, item), value(item.value), tmp_value(item.tmp_value),
sum(item.sum), sum_int(item.sum_int), hybrid_type(item.hybrid_type),
hybrid_field_type(item.hybrid_field_type),cmp_sign(item.cmp_sign),
- used_table_cache(used_table_cache), cmp_charset(item.cmp_charset) {}
+ used_table_cache(item.used_table_cache), cmp_charset(item.cmp_charset) {}
bool fix_fields(THD *, TABLE_LIST *, Item **);
table_map used_tables() const { return used_table_cache; }
bool const_item() const { return !used_table_cache; }