diff options
author | unknown <bell@sanja.is.com.ua> | 2004-10-09 01:01:19 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-10-09 01:01:19 +0300 |
commit | c6b382d63b245352843ffe37977e3106daad5879 (patch) | |
tree | c4a132c49116c629c762d7542fc01417bf89e9ee /sql/item.cc | |
parent | 166d19e9638595cd56cdfb1d65dbebdd64e6013d (diff) | |
download | mariadb-git-c6b382d63b245352843ffe37977e3106daad5879.tar.gz |
args_copy and cleunup() removed from Item_sum
registration changing ITEM_SUM arguments added
sql/item.cc:
cleunup for Item_result_field
sql/item.h:
cleunup for Item_result_field
sql/item_sum.cc:
args_copy and cleunup() removed from Item_sum
sql/item_sum.h:
args_copy and cleunup() removed from Item_sum
sql/sql_select.cc:
registration changing ITEM_SUM arguments
Diffstat (limited to 'sql/item.cc')
-rw-r--r-- | sql/item.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/item.cc b/sql/item.cc index 564bc72927c..067e5d91084 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -2629,6 +2629,14 @@ String *Item_type_holder::val_str(String*) return 0; } +void Item_result_field::cleanup() +{ + DBUG_ENTER("Item_result_field::cleanup()"); + Item::cleanup(); + result_field= 0; + DBUG_VOID_RETURN; +} + /***************************************************************************** ** Instantiate templates *****************************************************************************/ |