Commit 148cf113 authored by unknown's avatar unknown

Renaming sp_pcontext members and methods; less cryptic and more consistent.

Also added comments, and fixing some coding style (mostly in comments too).
There are no functional changes, so no tests or documentation needed.
(This was originally part of a bugfix, but it was decided to not include this
 in that patch; instead it's done separately.)


sql/sp_head.cc:
  Renaming sp_pcontext members and methods; less cryptic and more consistent.
sql/sp_head.h:
  Renaming sp_pcontext members and methods; less cryptic and more consistent.
sql/sp_pcontext.cc:
  Renaming sp_pcontext members and methods; less cryptic and more consistent.
  Also added comments, and fixing some coding style (mostly in comments too).
sql/sp_pcontext.h:
  Renaming sp_pcontext members and methods; less cryptic and more consistent.
  Also added comments, and fixing some coding style (mostly in comments too).
sql/sp_rcontext.cc:
  Renaming sp_pcontext members and methods; less cryptic and more consistent.
sql/sp_rcontext.h:
  Renaming sp_pcontext members and methods; less cryptic and more consistent.
sql/sql_yacc.yy:
  Renaming sp_pcontext members and methods; less cryptic and more consistent.
parent 70f4dbaa
...@@ -1214,7 +1214,7 @@ sp_head::execute_function(THD *thd, Item **argp, uint argcount, ...@@ -1214,7 +1214,7 @@ sp_head::execute_function(THD *thd, Item **argp, uint argcount,
DBUG_ENTER("sp_head::execute_function"); DBUG_ENTER("sp_head::execute_function");
DBUG_PRINT("info", ("function %s", m_name.str)); DBUG_PRINT("info", ("function %s", m_name.str));
params = m_pcont->context_pvars(); params = m_pcont->context_var_count();
/* /*
Check that the function is called with all specified arguments. Check that the function is called with all specified arguments.
...@@ -1391,7 +1391,7 @@ bool ...@@ -1391,7 +1391,7 @@ bool
sp_head::execute_procedure(THD *thd, List<Item> *args) sp_head::execute_procedure(THD *thd, List<Item> *args)
{ {
bool err_status= FALSE; bool err_status= FALSE;
uint params = m_pcont->context_pvars(); uint params = m_pcont->context_var_count();
sp_rcontext *save_spcont, *octx; sp_rcontext *save_spcont, *octx;
sp_rcontext *nctx = NULL; sp_rcontext *nctx = NULL;
DBUG_ENTER("sp_head::execute_procedure"); DBUG_ENTER("sp_head::execute_procedure");
...@@ -1443,15 +1443,15 @@ sp_head::execute_procedure(THD *thd, List<Item> *args) ...@@ -1443,15 +1443,15 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
for (uint i= 0 ; i < params ; i++) for (uint i= 0 ; i < params ; i++)
{ {
Item *arg_item= it_args++; Item *arg_item= it_args++;
sp_pvar_t *pvar= m_pcont->find_pvar(i); sp_variable_t *spvar= m_pcont->find_variable(i);
if (!arg_item) if (!arg_item)
break; break;
if (!pvar) if (!spvar)
continue; continue;
if (pvar->mode != sp_param_in) if (spvar->mode != sp_param_in)
{ {
if (!arg_item->is_splocal() && !item_is_user_var(arg_item)) if (!arg_item->is_splocal() && !item_is_user_var(arg_item))
{ {
...@@ -1461,7 +1461,7 @@ sp_head::execute_procedure(THD *thd, List<Item> *args) ...@@ -1461,7 +1461,7 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
} }
} }
if (pvar->mode == sp_param_out) if (spvar->mode == sp_param_out)
{ {
Item_null *null_item= new Item_null(); Item_null *null_item= new Item_null();
...@@ -1521,9 +1521,9 @@ sp_head::execute_procedure(THD *thd, List<Item> *args) ...@@ -1521,9 +1521,9 @@ sp_head::execute_procedure(THD *thd, List<Item> *args)
if (!arg_item) if (!arg_item)
break; break;
sp_pvar_t *pvar= m_pcont->find_pvar(i); sp_variable_t *spvar= m_pcont->find_variable(i);
if (pvar->mode == sp_param_in) if (spvar->mode == sp_param_in)
continue; continue;
if (arg_item->is_splocal()) if (arg_item->is_splocal())
...@@ -2388,7 +2388,7 @@ sp_instr_set::print(String *str) ...@@ -2388,7 +2388,7 @@ sp_instr_set::print(String *str)
{ {
/* set name@offset ... */ /* set name@offset ... */
int rsrv = SP_INSTR_UINT_MAXLEN+6; int rsrv = SP_INSTR_UINT_MAXLEN+6;
sp_pvar_t *var = m_ctx->find_pvar(m_offset); sp_variable_t *var = m_ctx->find_variable(m_offset);
/* 'var' should always be non-null, but just in case... */ /* 'var' should always be non-null, but just in case... */
if (var) if (var)
...@@ -3004,8 +3004,8 @@ sp_instr_cfetch::execute(THD *thd, uint *nextp) ...@@ -3004,8 +3004,8 @@ sp_instr_cfetch::execute(THD *thd, uint *nextp)
void void
sp_instr_cfetch::print(String *str) sp_instr_cfetch::print(String *str)
{ {
List_iterator_fast<struct sp_pvar> li(m_varlist); List_iterator_fast<struct sp_variable> li(m_varlist);
sp_pvar_t *pv; sp_variable_t *pv;
LEX_STRING n; LEX_STRING n;
my_bool found= m_ctx->find_cursor(m_cursor, &n); my_bool found= m_ctx->find_cursor(m_cursor, &n);
/* cfetch name@offset vars... */ /* cfetch name@offset vars... */
......
...@@ -44,7 +44,7 @@ class sp_instr; ...@@ -44,7 +44,7 @@ class sp_instr;
class sp_instr_opt_meta; class sp_instr_opt_meta;
class sp_instr_jump_if_not; class sp_instr_jump_if_not;
struct sp_cond_type; struct sp_cond_type;
struct sp_pvar; struct sp_variable;
class sp_name : public Sql_alloc class sp_name : public Sql_alloc
{ {
...@@ -1074,7 +1074,7 @@ class sp_instr_cfetch : public sp_instr ...@@ -1074,7 +1074,7 @@ class sp_instr_cfetch : public sp_instr
virtual void print(String *str); virtual void print(String *str);
void add_to_varlist(struct sp_pvar *var) void add_to_varlist(struct sp_variable *var)
{ {
m_varlist.push_back(var); m_varlist.push_back(var);
} }
...@@ -1082,7 +1082,7 @@ class sp_instr_cfetch : public sp_instr ...@@ -1082,7 +1082,7 @@ class sp_instr_cfetch : public sp_instr
private: private:
uint m_cursor; uint m_cursor;
List<struct sp_pvar> m_varlist; List<struct sp_variable> m_varlist;
}; // class sp_instr_cfetch : public sp_instr }; // class sp_instr_cfetch : public sp_instr
......
This diff is collapsed.
...@@ -29,22 +29,23 @@ typedef enum ...@@ -29,22 +29,23 @@ typedef enum
sp_param_inout sp_param_inout
} sp_param_mode_t; } sp_param_mode_t;
typedef struct sp_pvar typedef struct sp_variable
{ {
LEX_STRING name; LEX_STRING name;
enum enum_field_types type; enum enum_field_types type;
sp_param_mode_t mode; sp_param_mode_t mode;
/* /*
offset -- basically, this is an index of variable in the scope of root offset -- this the index to the variable's value in the runtime frame.
parsing context. This means, that all variables in a stored routine This is calculated during parsing and used when creating sp_instr_set
have distinct indexes/offsets. instructions and Item_splocal items.
I.e. values are set/referred by array indexing in runtime.
*/ */
uint offset; uint offset;
Item *dflt; Item *dflt;
create_field field_def; create_field field_def;
} sp_pvar_t; } sp_variable_t;
#define SP_LAB_REF 0 // Unresolved reference (for goto) #define SP_LAB_REF 0 // Unresolved reference (for goto)
...@@ -76,9 +77,10 @@ typedef struct sp_cond_type ...@@ -76,9 +77,10 @@ typedef struct sp_cond_type
uint mysqlerr; uint mysqlerr;
} sp_cond_type_t; } sp_cond_type_t;
/* Sanity check for SQLSTATEs. Will not check if it's really an existing /*
* state (there are just too many), but will check length bad characters. Sanity check for SQLSTATEs. Will not check if it's really an existing
*/ state (there are just too many), but will check length bad characters.
*/
extern bool extern bool
sp_cond_check(LEX_STRING *sqlstate); sp_cond_check(LEX_STRING *sqlstate);
...@@ -90,7 +92,17 @@ typedef struct sp_cond ...@@ -90,7 +92,17 @@ typedef struct sp_cond
/* /*
This seems to be an "SP parsing context" or something. The parse-time context, used to keep track on declared variables/parameters,
conditions, handlers, cursors and labels, during parsing.
sp_contexts are organized as a tree, with one object for each begin-end
block, plus a root-context for the parameters.
This is used during parsing for looking up defined names (e.g. declared
variables and visible labels), for error checking, and to calculate offsets
to be used at runtime. (During execution variable values, active handlers
and cursors, etc, are referred to by an index in a stack.)
The pcontext tree is also kept during execution and is used for error
checking (e.g. correct number of parameters), and in the future, used by
the debugger.
*/ */
class sp_pcontext : public Sql_alloc class sp_pcontext : public Sql_alloc
...@@ -134,50 +146,64 @@ class sp_pcontext : public Sql_alloc ...@@ -134,50 +146,64 @@ class sp_pcontext : public Sql_alloc
// Parameters and variables // Parameters and variables
// //
/*
The maximum number of variables used in this and all child contexts
In the root, this gives us the number of slots needed for variables
during execution.
*/
inline uint inline uint
total_pvars() max_var_index()
{ {
return m_total_pvars; return m_max_var_index;
} }
/*
The current number of variables used in the parents (from the root),
including this context.
*/
inline uint inline uint
current_pvars() current_var_count()
{ {
return m_poffset + m_pvar.elements; return m_var_offset + m_vars.elements;
} }
/* The number of variables in this context alone */
inline uint inline uint
context_pvars() context_var_count()
{ {
return m_pvar.elements; return m_vars.elements;
} }
/* Map index in this pcontext to runtime offset */
inline uint inline uint
pvar_context2index(uint i) var_context2runtime(uint i)
{ {
return m_poffset + i; return m_var_offset + i;
} }
/* Set type of variable. 'i' is the offset from the top */
inline void inline void
set_type(uint i, enum enum_field_types type) set_type(uint i, enum enum_field_types type)
{ {
sp_pvar_t *p= find_pvar(i); sp_variable_t *p= find_variable(i);
if (p) if (p)
p->type= type; p->type= type;
} }
/* Set default value of variable. 'i' is the offset from the top */
inline void inline void
set_default(uint i, Item *it) set_default(uint i, Item *it)
{ {
sp_pvar_t *p= find_pvar(i); sp_variable_t *p= find_variable(i);
if (p) if (p)
p->dflt= it; p->dflt= it;
} }
sp_pvar_t * sp_variable_t *
push_pvar(LEX_STRING *name, enum enum_field_types type, sp_param_mode_t mode); push_variable(LEX_STRING *name, enum enum_field_types type,
sp_param_mode_t mode);
/* /*
Retrieve definitions of fields from the current context and its Retrieve definitions of fields from the current context and its
...@@ -187,12 +213,12 @@ class sp_pcontext : public Sql_alloc ...@@ -187,12 +213,12 @@ class sp_pcontext : public Sql_alloc
retrieve_field_definitions(List<create_field> *field_def_lst); retrieve_field_definitions(List<create_field> *field_def_lst);
// Find by name // Find by name
sp_pvar_t * sp_variable_t *
find_pvar(LEX_STRING *name, my_bool scoped=0); find_variable(LEX_STRING *name, my_bool scoped=0);
// Find by offset // Find by offset (from the top)
sp_pvar_t * sp_variable_t *
find_pvar(uint offset); find_variable(uint offset);
/* /*
Set the current scope boundary (for default values). Set the current scope boundary (for default values).
...@@ -280,7 +306,7 @@ class sp_pcontext : public Sql_alloc ...@@ -280,7 +306,7 @@ class sp_pcontext : public Sql_alloc
pop_cond(uint num) pop_cond(uint num)
{ {
while (num--) while (num--)
pop_dynamic(&m_cond); pop_dynamic(&m_conds);
} }
sp_cond_type_t * sp_cond_type_t *
...@@ -293,22 +319,22 @@ class sp_pcontext : public Sql_alloc ...@@ -293,22 +319,22 @@ class sp_pcontext : public Sql_alloc
inline void inline void
push_handler(sp_cond_type_t *cond) push_handler(sp_cond_type_t *cond)
{ {
insert_dynamic(&m_handler, (gptr)&cond); insert_dynamic(&m_handlers, (gptr)&cond);
} }
bool bool
find_handler(sp_cond_type *cond); find_handler(sp_cond_type *cond);
inline uint inline uint
max_handlers() max_handler_index()
{ {
return m_hsubsize + m_handlers; return m_max_handler_index + m_context_handlers;
} }
inline void inline void
add_handlers(uint n) add_handlers(uint n)
{ {
m_handlers+= n; m_context_handlers+= n;
} }
// //
...@@ -326,51 +352,51 @@ class sp_pcontext : public Sql_alloc ...@@ -326,51 +352,51 @@ class sp_pcontext : public Sql_alloc
find_cursor(uint offset, LEX_STRING *n); find_cursor(uint offset, LEX_STRING *n);
inline uint inline uint
max_cursors() max_cursor_index()
{ {
return m_csubsize + m_cursor.elements; return m_max_cursor_index + m_cursors.elements;
} }
inline uint inline uint
current_cursors() current_cursor_count()
{ {
return m_coffset + m_cursor.elements; return m_cursor_offset + m_cursors.elements;
} }
protected: protected:
/* /*
m_total_pvars -- number of variables (including all types of arguments) m_max_var_index -- number of variables (including all types of arguments)
in this context including all children contexts. in this context including all children contexts.
m_total_pvars >= m_pvar.elements. m_max_var_index >= m_vars.elements.
m_total_pvars of the root parsing context contains number of all m_max_var_index of the root parsing context contains number of all
variables (including arguments) in all enclosed contexts. variables (including arguments) in all enclosed contexts.
*/ */
uint m_total_pvars; uint m_max_var_index;
// The maximum sub context's framesizes // The maximum sub context's framesizes
uint m_csubsize; uint m_max_cursor_index;
uint m_hsubsize; uint m_max_handler_index;
uint m_handlers; // No. of handlers in this context uint m_context_handlers; // No. of handlers in this context
private: private:
sp_pcontext *m_parent; // Parent context sp_pcontext *m_parent; // Parent context
/* /*
m_poffset -- basically, this is an index of the first variable in this m_var_offset -- this is an index of the first variable in this
parsing context. parsing context.
m_poffset is 0 for root context. m_var_offset is 0 for root context.
Since now each variable is stored in separate place, no reuse is done, Since now each variable is stored in separate place, no reuse is done,
so m_poffset is different for all enclosed contexts. so m_var_offset is different for all enclosed contexts.
*/ */
uint m_poffset; uint m_var_offset;
uint m_coffset; // Cursor offset for this context uint m_cursor_offset; // Cursor offset for this context
/* /*
Boundary for finding variables in this context. This is the number Boundary for finding variables in this context. This is the number
...@@ -382,11 +408,11 @@ class sp_pcontext : public Sql_alloc ...@@ -382,11 +408,11 @@ class sp_pcontext : public Sql_alloc
int m_num_case_exprs; int m_num_case_exprs;
DYNAMIC_ARRAY m_pvar; // Parameters/variables DYNAMIC_ARRAY m_vars; // Parameters/variables
DYNAMIC_ARRAY m_case_expr_id_lst; /* Stack of CASE expression ids. */ DYNAMIC_ARRAY m_case_expr_id_lst; /* Stack of CASE expression ids. */
DYNAMIC_ARRAY m_cond; // Conditions DYNAMIC_ARRAY m_conds; // Conditions
DYNAMIC_ARRAY m_cursor; // Cursors DYNAMIC_ARRAY m_cursors; // Cursors
DYNAMIC_ARRAY m_handler; // Handlers, for checking of duplicates DYNAMIC_ARRAY m_handlers; // Handlers, for checking for duplicates
List<sp_label_t> m_label; // The label list List<sp_label_t> m_label; // The label list
......
...@@ -73,16 +73,16 @@ bool sp_rcontext::init(THD *thd) ...@@ -73,16 +73,16 @@ bool sp_rcontext::init(THD *thd)
return return
!(m_handler= !(m_handler=
(sp_handler_t*)thd->alloc(m_root_parsing_ctx->max_handlers() * (sp_handler_t*)thd->alloc(m_root_parsing_ctx->max_handler_index() *
sizeof(sp_handler_t))) || sizeof(sp_handler_t))) ||
!(m_hstack= !(m_hstack=
(uint*)thd->alloc(m_root_parsing_ctx->max_handlers() * (uint*)thd->alloc(m_root_parsing_ctx->max_handler_index() *
sizeof(uint))) || sizeof(uint))) ||
!(m_in_handler= !(m_in_handler=
(uint*)thd->alloc(m_root_parsing_ctx->max_handlers() * (uint*)thd->alloc(m_root_parsing_ctx->max_handler_index() *
sizeof(uint))) || sizeof(uint))) ||
!(m_cstack= !(m_cstack=
(sp_cursor**)thd->alloc(m_root_parsing_ctx->max_cursors() * (sp_cursor**)thd->alloc(m_root_parsing_ctx->max_cursor_index() *
sizeof(sp_cursor*))) || sizeof(sp_cursor*))) ||
!(m_case_expr_holders= !(m_case_expr_holders=
(Item_cache**)thd->calloc(m_root_parsing_ctx->get_num_case_exprs() * (Item_cache**)thd->calloc(m_root_parsing_ctx->get_num_case_exprs() *
...@@ -105,12 +105,12 @@ sp_rcontext::init_var_table(THD *thd) ...@@ -105,12 +105,12 @@ sp_rcontext::init_var_table(THD *thd)
{ {
List<create_field> field_def_lst; List<create_field> field_def_lst;
if (!m_root_parsing_ctx->total_pvars()) if (!m_root_parsing_ctx->max_var_index())
return FALSE; return FALSE;
m_root_parsing_ctx->retrieve_field_definitions(&field_def_lst); m_root_parsing_ctx->retrieve_field_definitions(&field_def_lst);
DBUG_ASSERT(field_def_lst.elements == m_root_parsing_ctx->total_pvars()); DBUG_ASSERT(field_def_lst.elements == m_root_parsing_ctx->max_var_index());
if (!(m_var_table= create_virtual_tmp_table(thd, field_def_lst))) if (!(m_var_table= create_virtual_tmp_table(thd, field_def_lst)))
return TRUE; return TRUE;
...@@ -134,7 +134,7 @@ bool ...@@ -134,7 +134,7 @@ bool
sp_rcontext::init_var_items() sp_rcontext::init_var_items()
{ {
uint idx; uint idx;
uint num_vars= m_root_parsing_ctx->total_pvars(); uint num_vars= m_root_parsing_ctx->max_var_index();
if (!(m_var_items= (Item**) sql_alloc(num_vars * sizeof (Item *)))) if (!(m_var_items= (Item**) sql_alloc(num_vars * sizeof (Item *))))
return TRUE; return TRUE;
...@@ -381,7 +381,7 @@ sp_cursor::destroy() ...@@ -381,7 +381,7 @@ sp_cursor::destroy()
int int
sp_cursor::fetch(THD *thd, List<struct sp_pvar> *vars) sp_cursor::fetch(THD *thd, List<struct sp_variable> *vars)
{ {
if (! server_side_cursor) if (! server_side_cursor)
{ {
...@@ -528,9 +528,9 @@ int Select_fetch_into_spvars::prepare(List<Item> &fields, SELECT_LEX_UNIT *u) ...@@ -528,9 +528,9 @@ int Select_fetch_into_spvars::prepare(List<Item> &fields, SELECT_LEX_UNIT *u)
bool Select_fetch_into_spvars::send_data(List<Item> &items) bool Select_fetch_into_spvars::send_data(List<Item> &items)
{ {
List_iterator_fast<struct sp_pvar> pv_iter(*spvar_list); List_iterator_fast<struct sp_variable> spvar_iter(*spvar_list);
List_iterator_fast<Item> item_iter(items); List_iterator_fast<Item> item_iter(items);
sp_pvar_t *pv; sp_variable_t *spvar;
Item *item; Item *item;
/* Must be ensured by the caller */ /* Must be ensured by the caller */
...@@ -540,9 +540,9 @@ bool Select_fetch_into_spvars::send_data(List<Item> &items) ...@@ -540,9 +540,9 @@ bool Select_fetch_into_spvars::send_data(List<Item> &items)
Assign the row fetched from a server side cursor to stored Assign the row fetched from a server side cursor to stored
procedure variables. procedure variables.
*/ */
for (; pv= pv_iter++, item= item_iter++; ) for (; spvar= spvar_iter++, item= item_iter++; )
{ {
if (thd->spcont->set_variable(thd, pv->offset, item)) if (thd->spcont->set_variable(thd, spvar->offset, item))
return TRUE; return TRUE;
} }
return FALSE; return FALSE;
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
struct sp_cond_type; struct sp_cond_type;
class sp_cursor; class sp_cursor;
struct sp_pvar; struct sp_variable;
class sp_lex_keeper; class sp_lex_keeper;
class sp_instr_cpush; class sp_instr_cpush;
...@@ -265,12 +265,12 @@ class sp_rcontext : public Sql_alloc ...@@ -265,12 +265,12 @@ class sp_rcontext : public Sql_alloc
class Select_fetch_into_spvars: public select_result_interceptor class Select_fetch_into_spvars: public select_result_interceptor
{ {
List<struct sp_pvar> *spvar_list; List<struct sp_variable> *spvar_list;
uint field_count; uint field_count;
public: public:
Select_fetch_into_spvars() {} /* Remove gcc warning */ Select_fetch_into_spvars() {} /* Remove gcc warning */
uint get_field_count() { return field_count; } uint get_field_count() { return field_count; }
void set_spvar_list(List<struct sp_pvar> *vars) { spvar_list= vars; } void set_spvar_list(List<struct sp_variable> *vars) { spvar_list= vars; }
virtual bool send_eof() { return FALSE; } virtual bool send_eof() { return FALSE; }
virtual bool send_data(List<Item> &items); virtual bool send_data(List<Item> &items);
...@@ -307,7 +307,7 @@ class sp_cursor : public Sql_alloc ...@@ -307,7 +307,7 @@ class sp_cursor : public Sql_alloc
} }
int int
fetch(THD *, List<struct sp_pvar> *vars); fetch(THD *, List<struct sp_variable> *vars);
inline sp_instr_cpush * inline sp_instr_cpush *
get_instr() get_instr()
......
...@@ -1461,22 +1461,23 @@ sp_fdparam: ...@@ -1461,22 +1461,23 @@ sp_fdparam:
LEX *lex= Lex; LEX *lex= Lex;
sp_pcontext *spc= lex->spcont; sp_pcontext *spc= lex->spcont;
if (spc->find_pvar(&$1, TRUE)) if (spc->find_variable(&$1, TRUE))
{ {
my_error(ER_SP_DUP_PARAM, MYF(0), $1.str); my_error(ER_SP_DUP_PARAM, MYF(0), $1.str);
YYABORT; YYABORT;
} }
sp_pvar_t *pvar= spc->push_pvar(&$1, (enum enum_field_types)$3, sp_variable_t *spvar= spc->push_variable(&$1,
sp_param_in); (enum enum_field_types)$3,
sp_param_in);
if (lex->sphead->fill_field_definition(YYTHD, lex, if (lex->sphead->fill_field_definition(YYTHD, lex,
(enum enum_field_types) $3, (enum enum_field_types) $3,
&pvar->field_def)) &spvar->field_def))
{ {
YYABORT; YYABORT;
} }
pvar->field_def.field_name= pvar->name.str; spvar->field_def.field_name= spvar->name.str;
pvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL; spvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL;
} }
; ;
...@@ -1497,22 +1498,23 @@ sp_pdparam: ...@@ -1497,22 +1498,23 @@ sp_pdparam:
LEX *lex= Lex; LEX *lex= Lex;
sp_pcontext *spc= lex->spcont; sp_pcontext *spc= lex->spcont;
if (spc->find_pvar(&$3, TRUE)) if (spc->find_variable(&$3, TRUE))
{ {
my_error(ER_SP_DUP_PARAM, MYF(0), $3.str); my_error(ER_SP_DUP_PARAM, MYF(0), $3.str);
YYABORT; YYABORT;
} }
sp_pvar_t *pvar= spc->push_pvar(&$3, (enum enum_field_types)$4, sp_variable_t *spvar= spc->push_variable(&$3,
(sp_param_mode_t)$1); (enum enum_field_types)$4,
(sp_param_mode_t)$1);
if (lex->sphead->fill_field_definition(YYTHD, lex, if (lex->sphead->fill_field_definition(YYTHD, lex,
(enum enum_field_types) $4, (enum enum_field_types) $4,
&pvar->field_def)) &spvar->field_def))
{ {
YYABORT; YYABORT;
} }
pvar->field_def.field_name= pvar->name.str; spvar->field_def.field_name= spvar->name.str;
pvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL; spvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL;
} }
; ;
...@@ -1576,7 +1578,7 @@ sp_decl: ...@@ -1576,7 +1578,7 @@ sp_decl:
{ {
LEX *lex= Lex; LEX *lex= Lex;
sp_pcontext *pctx= lex->spcont; sp_pcontext *pctx= lex->spcont;
uint num_vars= pctx->context_pvars(); uint num_vars= pctx->context_var_count();
enum enum_field_types var_type= (enum enum_field_types) $4; enum enum_field_types var_type= (enum enum_field_types) $4;
Item *dflt_value_item= $5; Item *dflt_value_item= $5;
create_field *create_field_op; create_field *create_field_op;
...@@ -1589,23 +1591,23 @@ sp_decl: ...@@ -1589,23 +1591,23 @@ sp_decl:
for (uint i = num_vars-$2 ; i < num_vars ; i++) for (uint i = num_vars-$2 ; i < num_vars ; i++)
{ {
uint var_idx= pctx->pvar_context2index(i); uint var_idx= pctx->var_context2runtime(i);
sp_pvar_t *pvar= pctx->find_pvar(var_idx); sp_variable_t *spvar= pctx->find_variable(var_idx);
if (!pvar) if (!spvar)
YYABORT; YYABORT;
pvar->type= var_type; spvar->type= var_type;
pvar->dflt= dflt_value_item; spvar->dflt= dflt_value_item;
if (lex->sphead->fill_field_definition(YYTHD, lex, var_type, if (lex->sphead->fill_field_definition(YYTHD, lex, var_type,
&pvar->field_def)) &spvar->field_def))
{ {
YYABORT; YYABORT;
} }
pvar->field_def.field_name= pvar->name.str; spvar->field_def.field_name= spvar->name.str;
pvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL; spvar->field_def.pack_flag |= FIELDFLAG_MAYBE_NULL;
/* The last instruction is responsible for freeing LEX. */ /* The last instruction is responsible for freeing LEX. */
...@@ -1642,7 +1644,7 @@ sp_decl: ...@@ -1642,7 +1644,7 @@ sp_decl:
sp_pcontext *ctx= lex->spcont; sp_pcontext *ctx= lex->spcont;
sp_instr_hpush_jump *i= sp_instr_hpush_jump *i=
new sp_instr_hpush_jump(sp->instructions(), ctx, $2, new sp_instr_hpush_jump(sp->instructions(), ctx, $2,
ctx->current_pvars()); ctx->current_var_count());
sp->add_instr(i); sp->add_instr(i);
sp->push_backpatch(i, ctx->push_label((char *)"", 0)); sp->push_backpatch(i, ctx->push_label((char *)"", 0));
...@@ -1659,7 +1661,7 @@ sp_decl: ...@@ -1659,7 +1661,7 @@ sp_decl:
if ($2 == SP_HANDLER_CONTINUE) if ($2 == SP_HANDLER_CONTINUE)
{ {
i= new sp_instr_hreturn(sp->instructions(), ctx, i= new sp_instr_hreturn(sp->instructions(), ctx,
ctx->current_pvars()); ctx->current_var_count());
sp->add_instr(i); sp->add_instr(i);
} }
else else
...@@ -1690,7 +1692,7 @@ sp_decl: ...@@ -1690,7 +1692,7 @@ sp_decl:
YYABORT; YYABORT;
} }
i= new sp_instr_cpush(sp->instructions(), ctx, $5, i= new sp_instr_cpush(sp->instructions(), ctx, $5,
ctx->current_cursors()); ctx->current_cursor_count());
sp->add_instr(i); sp->add_instr(i);
ctx->push_cursor(&$2); ctx->push_cursor(&$2);
$$.vars= $$.conds= $$.hndlrs= 0; $$.vars= $$.conds= $$.hndlrs= 0;
...@@ -1845,12 +1847,12 @@ sp_decl_idents: ...@@ -1845,12 +1847,12 @@ sp_decl_idents:
LEX *lex= Lex; LEX *lex= Lex;
sp_pcontext *spc= lex->spcont; sp_pcontext *spc= lex->spcont;
if (spc->find_pvar(&$1, TRUE)) if (spc->find_variable(&$1, TRUE))
{ {
my_error(ER_SP_DUP_VAR, MYF(0), $1.str); my_error(ER_SP_DUP_VAR, MYF(0), $1.str);
YYABORT; YYABORT;
} }
spc->push_pvar(&$1, (enum_field_types)0, sp_param_in); spc->push_variable(&$1, (enum_field_types)0, sp_param_in);
$$= 1; $$= 1;
} }
| sp_decl_idents ',' ident | sp_decl_idents ',' ident
...@@ -1860,12 +1862,12 @@ sp_decl_idents: ...@@ -1860,12 +1862,12 @@ sp_decl_idents:
LEX *lex= Lex; LEX *lex= Lex;
sp_pcontext *spc= lex->spcont; sp_pcontext *spc= lex->spcont;
if (spc->find_pvar(&$3, TRUE)) if (spc->find_variable(&$3, TRUE))
{ {
my_error(ER_SP_DUP_VAR, MYF(0), $3.str); my_error(ER_SP_DUP_VAR, MYF(0), $3.str);
YYABORT; YYABORT;
} }
spc->push_pvar(&$3, (enum_field_types)0, sp_param_in); spc->push_variable(&$3, (enum_field_types)0, sp_param_in);
$$= $1 + 1; $$= $1 + 1;
} }
; ;
...@@ -2198,9 +2200,9 @@ sp_fetch_list: ...@@ -2198,9 +2200,9 @@ sp_fetch_list:
LEX *lex= Lex; LEX *lex= Lex;
sp_head *sp= lex->sphead; sp_head *sp= lex->sphead;
sp_pcontext *spc= lex->spcont; sp_pcontext *spc= lex->spcont;
sp_pvar_t *spv; sp_variable_t *spv;
if (!spc || !(spv = spc->find_pvar(&$1))) if (!spc || !(spv = spc->find_variable(&$1)))
{ {
my_error(ER_SP_UNDECLARED_VAR, MYF(0), $1.str); my_error(ER_SP_UNDECLARED_VAR, MYF(0), $1.str);
YYABORT; YYABORT;
...@@ -2219,9 +2221,9 @@ sp_fetch_list: ...@@ -2219,9 +2221,9 @@ sp_fetch_list:
LEX *lex= Lex; LEX *lex= Lex;
sp_head *sp= lex->sphead; sp_head *sp= lex->sphead;
sp_pcontext *spc= lex->spcont; sp_pcontext *spc= lex->spcont;
sp_pvar_t *spv; sp_variable_t *spv;
if (!spc || !(spv = spc->find_pvar(&$3))) if (!spc || !(spv = spc->find_variable(&$3)))
{ {
my_error(ER_SP_UNDECLARED_VAR, MYF(0), $3.str); my_error(ER_SP_UNDECLARED_VAR, MYF(0), $3.str);
YYABORT; YYABORT;
...@@ -5868,9 +5870,9 @@ select_var_ident: ...@@ -5868,9 +5870,9 @@ select_var_ident:
| ident_or_text | ident_or_text
{ {
LEX *lex=Lex; LEX *lex=Lex;
sp_pvar_t *t; sp_variable_t *t;
if (!lex->spcont || !(t=lex->spcont->find_pvar(&$1))) if (!lex->spcont || !(t=lex->spcont->find_variable(&$1)))
{ {
my_error(ER_SP_UNDECLARED_VAR, MYF(0), $1.str); my_error(ER_SP_UNDECLARED_VAR, MYF(0), $1.str);
YYABORT; YYABORT;
...@@ -7200,10 +7202,10 @@ order_ident: ...@@ -7200,10 +7202,10 @@ order_ident:
simple_ident: simple_ident:
ident ident
{ {
sp_pvar_t *spv; sp_variable_t *spv;
LEX *lex = Lex; LEX *lex = Lex;
sp_pcontext *spc = lex->spcont; sp_pcontext *spc = lex->spcont;
if (spc && (spv = spc->find_pvar(&$1))) if (spc && (spv = spc->find_variable(&$1)))
{ {
/* We're compiling a stored procedure and found a variable */ /* We're compiling a stored procedure and found a variable */
Item_splocal *splocal; Item_splocal *splocal;
...@@ -7947,7 +7949,7 @@ sys_option_value: ...@@ -7947,7 +7949,7 @@ sys_option_value:
{ {
/* An SP local variable */ /* An SP local variable */
sp_pcontext *ctx= lex->spcont; sp_pcontext *ctx= lex->spcont;
sp_pvar_t *spv; sp_variable_t *spv;
sp_instr_set *sp_set; sp_instr_set *sp_set;
Item *it; Item *it;
if ($1) if ($1)
...@@ -7956,7 +7958,7 @@ sys_option_value: ...@@ -7956,7 +7958,7 @@ sys_option_value:
YYABORT; YYABORT;
} }
spv= ctx->find_pvar(&$2.base_name); spv= ctx->find_variable(&$2.base_name);
if ($4) if ($4)
it= $4; it= $4;
...@@ -8006,7 +8008,7 @@ option_value: ...@@ -8006,7 +8008,7 @@ option_value:
names.str= (char *)"names"; names.str= (char *)"names";
names.length= 5; names.length= 5;
if (spc && spc->find_pvar(&names)) if (spc && spc->find_variable(&names))
my_error(ER_SP_BAD_VAR_SHADOW, MYF(0), names.str); my_error(ER_SP_BAD_VAR_SHADOW, MYF(0), names.str);
else else
yyerror(ER(ER_SYNTAX_ERROR)); yyerror(ER(ER_SYNTAX_ERROR));
...@@ -8036,7 +8038,7 @@ option_value: ...@@ -8036,7 +8038,7 @@ option_value:
pw.str= (char *)"password"; pw.str= (char *)"password";
pw.length= 8; pw.length= 8;
if (spc && spc->find_pvar(&pw)) if (spc && spc->find_variable(&pw))
{ {
my_error(ER_SP_BAD_VAR_SHADOW, MYF(0), pw.str); my_error(ER_SP_BAD_VAR_SHADOW, MYF(0), pw.str);
YYABORT; YYABORT;
...@@ -8058,10 +8060,10 @@ internal_variable_name: ...@@ -8058,10 +8060,10 @@ internal_variable_name:
{ {
LEX *lex= Lex; LEX *lex= Lex;
sp_pcontext *spc= lex->spcont; sp_pcontext *spc= lex->spcont;
sp_pvar_t *spv; sp_variable_t *spv;
/* We have to lookup here since local vars can shadow sysvars */ /* We have to lookup here since local vars can shadow sysvars */
if (!spc || !(spv = spc->find_pvar(&$1))) if (!spc || !(spv = spc->find_variable(&$1)))
{ {
/* Not an SP local variable */ /* Not an SP local variable */
sys_var *tmp=find_sys_var($1.str, $1.length); sys_var *tmp=find_sys_var($1.str, $1.length);
......
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