From 8f31da3cfd3b74b7f4691257599acfe3dc4d4ec0 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 9 Feb 2007 11:05:23 +0200 Subject: Addendum to fix of bug #22344 : removed dead code. --- sql/item.cc | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/sql/item.cc b/sql/item.cc index 6d0297f909e..95001809e9a 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -5277,18 +5277,7 @@ my_decimal *Item_ref::val_decimal(my_decimal *decimal_value) int Item_ref::save_in_field(Field *to, bool no_conversions) { int res; - if (result_field) - { - if (result_field->is_null()) - { - null_value= 1; - return set_field_to_null_with_conversions(to, no_conversions); - } - to->set_notnull(); - res= field_conv(to, result_field); - null_value= 0; - return res; - } + DBUG_ASSERT(!result_field); res= (*ref)->save_in_field(to, no_conversions); null_value= (*ref)->null_value; return res; -- cgit v1.2.1