diff options
author | bell@sanja.is.com.ua <> | 2003-07-02 01:45:22 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2003-07-02 01:45:22 +0300 |
commit | 5eaaf8e732b860195f0ffdf3f82d2064ef171b84 (patch) | |
tree | a15fd9ce191ac8165d991ba6d62e349923070337 /sql/item_strfunc.h | |
parent | 100a101ab6d7c49e73a3fb0a81bc8155011ab1c7 (diff) | |
download | mariadb-git-5eaaf8e732b860195f0ffdf3f82d2064ef171b84.tar.gz |
after review changes (SCRUM)
removed outer resolving flag (because of movingtransformation after fix_fields)
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 6cc6d730627..0c1cb5a2739 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -107,11 +107,6 @@ public: } void split_sum_func(Item **ref_pointer_array, List<Item> &fields); const char *func_name() const { return "concat_ws"; } - void set_outer_resolving() - { - separator->set_outer_resolving(); - Item_func::set_outer_resolving(); - } }; class Item_func_reverse :public Item_str_func @@ -390,11 +385,6 @@ public: void fix_length_and_dec(); void update_used_tables(); const char *func_name() const { return "elt"; } - void set_outer_resolving() - { - item->set_outer_resolving(); - Item_str_func::set_outer_resolving(); - } }; @@ -417,11 +407,6 @@ public: void fix_length_and_dec(); void update_used_tables(); const char *func_name() const { return "make_set"; } - void set_outer_resolving() - { - item->set_outer_resolving(); - Item_str_func::set_outer_resolving(); - } }; |