diff options
Diffstat (limited to 'sql/item_xmlfunc.h')
-rw-r--r-- | sql/item_xmlfunc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/item_xmlfunc.h b/sql/item_xmlfunc.h index 3758025fc90..8daf8cbc281 100644 --- a/sql/item_xmlfunc.h +++ b/sql/item_xmlfunc.h @@ -105,6 +105,8 @@ public: Item_xml_str_func(thd, a, b) {} const char *func_name() const { return "extractvalue"; } String *val_str(String *); + Item *get_copy(THD *thd, MEM_ROOT *mem_root) + { return get_item_copy<Item_func_xml_extractvalue>(thd, mem_root, this); } }; @@ -119,6 +121,8 @@ public: Item_xml_str_func(thd, a, b, c) {} const char *func_name() const { return "updatexml"; } String *val_str(String *); + Item *get_copy(THD *thd, MEM_ROOT *mem_root) + { return get_item_copy<Item_func_xml_update>(thd, mem_root, this); } }; #endif /* ITEM_XMLFUNC_INCLUDED */ |