From e48a6c6c29f0a465bfb0b560e5ab9af882161f67 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 23 Oct 2003 17:34:11 +0200 Subject: [PATCH] Undid previous fix (as it will be fixed by a merge). --- sql/item_sum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/item_sum.h b/sql/item_sum.h index c6fed46a338..78d887782e2 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(item.used_table_cache), cmp_charset(item.cmp_charset) {} + used_table_cache(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; }