summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index 38a40e71544..35db77891b1 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -2772,6 +2772,7 @@ class Item_func_sp :public Item_func,
public Item_sp
{
private:
+ const Sp_handler *m_handler;
bool execute();
@@ -2786,10 +2787,11 @@ protected:
}
public:
- Item_func_sp(THD *thd, Name_resolution_context *context_arg, sp_name *name);
+ Item_func_sp(THD *thd, Name_resolution_context *context_arg,
+ sp_name *name, const Sp_handler *sph);
Item_func_sp(THD *thd, Name_resolution_context *context_arg,
- sp_name *name, List<Item> &list);
+ sp_name *name, const Sp_handler *sph, List<Item> &list);
virtual ~Item_func_sp()
{}