Commit aabb33cc authored by Sergei Golubchik's avatar Sergei Golubchik

cleanup: public Item_param::get_settable_routine_parameter()

make Item_param::get_settable_routine_parameter() public, because it's
public in the parent Item class and all other Item descendants too
parent e8fb2466
...@@ -2366,13 +2366,12 @@ class Item_param :public Item, ...@@ -2366,13 +2366,12 @@ class Item_param :public Item,
bool limit_clause_param; bool limit_clause_param;
void set_param_type_and_swap_value(Item_param *from); void set_param_type_and_swap_value(Item_param *from);
private: Settable_routine_parameter *get_settable_routine_parameter()
virtual inline Settable_routine_parameter *
get_settable_routine_parameter()
{ {
return this; return this;
} }
private:
virtual bool set_value(THD *thd, sp_rcontext *ctx, Item **it); virtual bool set_value(THD *thd, sp_rcontext *ctx, Item **it);
virtual void set_out_param_info(Send_field *info); virtual void set_out_param_info(Send_field *info);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment