diff options
author | vva@eagle.mysql.r18.ru <> | 2003-10-03 17:22:17 -0400 |
---|---|---|
committer | vva@eagle.mysql.r18.ru <> | 2003-10-03 17:22:17 -0400 |
commit | 5df81848279b53c48de491d165cf01d0616e3cac (patch) | |
tree | f4566dc50ebdba1a4e9161495ca37d4d3e31d15e /sql/item_sum.h | |
parent | d62eaa7815a40e4677108970a647471d62524cac (diff) | |
download | mariadb-git-5df81848279b53c48de491d165cf01d0616e3cac.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.h | 2 |
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; } |