1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-6980 OUT parameters in PREPARE

revert the patch for "out parameters in prepare"
This commit is contained in:
Sergei Golubchik
2014-11-27 09:45:10 +01:00
parent 717a264ef4
commit 0438f12540
16 changed files with 10 additions and 370 deletions

View File

@ -4947,17 +4947,6 @@ public:
virtual bool set(THD *thd, Item *val) = 0;
};
class my_var_param: public my_var {
public:
Settable_routine_parameter *param;
my_var_param(Item_param *p)
: my_var(null_lex_str, PARAM_VAR),
param(p->get_settable_routine_parameter())
{ p->inout= Item_param::OUT_PARAM; }
~my_var_param() { }
bool set(THD *thd, Item *val);
};
class my_var_sp: public my_var {
public:
uint offset;