diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-08-16 08:17:08 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2014-10-10 22:27:37 +0200 |
commit | aabb33cc54e6031f7c9f5b2a06566387550fa194 (patch) | |
tree | 1fac29e9bbe0275766848c481962857bfbd4803c /sql | |
parent | e8fb24664e3382055dca4a0c35fd5aed2d3ed13f (diff) | |
download | mariadb-git-aabb33cc54e6031f7c9f5b2a06566387550fa194.tar.gz |
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
Diffstat (limited to 'sql')
-rw-r--r-- | sql/item.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/item.h b/sql/item.h index 29e727b8d5f..c0c562c7c78 100644 --- a/sql/item.h +++ b/sql/item.h @@ -2366,13 +2366,12 @@ public: 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); |