Skip to content

Commit

Permalink
cleanup: public Item_param::get_settable_routine_parameter()
Browse files Browse the repository at this point in the history
make Item_param::get_settable_routine_parameter() public, because it's
public in the parent Item class and all other Item descendants too
  • Loading branch information
vuvova committed Oct 10, 2014
1 parent e8fb246 commit aabb33c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sql/item.h
Original file line number Diff line number Diff line change
Expand Up @@ -2366,13 +2366,12 @@ class Item_param :public Item,
bool limit_clause_param;
void set_param_type_and_swap_value(Item_param *from);

private:
virtual inline Settable_routine_parameter *
get_settable_routine_parameter()
Settable_routine_parameter *get_settable_routine_parameter()
{
return this;
}

private:
virtual bool set_value(THD *thd, sp_rcontext *ctx, Item **it);

virtual void set_out_param_info(Send_field *info);
Expand Down

0 comments on commit aabb33c

Please sign in to comment.