Commit 6574612d authored by unknown's avatar unknown

Fix for BUG#13549 "Server crash with nested stored procedures

if inner routine has more local variables than outer one, and
one of its last variables was used as argument to NOT operator".

THD::spcont was non-0 when we were parsing stored routine/trigger
definition during execution of another stored routine. This confused
methods of Item_splocal and forced them use wrong runtime context.
Fix ensures that we always have THD::spcont equal to zero during
routine/trigger body parsing. This also allows to avoid problems
with errors which occur during parsing and SQL exception handlers.


mysql-test/r/sp.result:
  Test suite for bug#13549.
mysql-test/r/trigger.result:
  Test suite for bug#13549.
mysql-test/t/sp.test:
  Test suite for bug#13549.
mysql-test/t/trigger.test:
  Test suite for bug#13549.
sql/item.cc:
  Protection against using wrong context by SP local variable.
sql/item.h:
  Protection against using wrong context by SP local variable.
sql/protocol.cc:
  An incorrect macro name fixed.
sql/protocol.h:
  An incorrect macro name fixed.
sql/sp.cc:
  Do not allow SP which we are parsing to use other SP
  context (BUG#13549).
sql/sp_head.cc:
  Protection against using wrong context by SP local variable.
sql/sp_rcontext.h:
  Protection against using wrong context by SP local variable.
sql/sql_cache.h:
  An incorrect macro name fixed.
sql/sql_class.cc:
  Protection against using wrong context by SP local variable.
sql/sql_class.h:
  Protection against using wrong context by SP local variable.
sql/sql_trigger.cc:
  Do not allow Trigger which we are parsing to use
  other SP context (BUG#13549).
sql/sql_yacc.yy:
  Protection against using wrong context by SP local variable.
parent 3410309f
...@@ -3435,4 +3435,21 @@ Table Create Table ...@@ -3435,4 +3435,21 @@ Table Create Table
tm1 CREATE TEMPORARY TABLE `tm1` ( tm1 CREATE TEMPORARY TABLE `tm1` (
`spv1` decimal(6,3) default NULL `spv1` decimal(6,3) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop procedure bug12589_1|
drop procedure bug12589_2|
drop procedure bug12589_3|
drop procedure if exists bug13549_1|
drop procedure if exists bug13549_2|
CREATE PROCEDURE `bug13549_2`()
begin
call bug13549_1();
end|
CREATE PROCEDURE `bug13549_1`()
begin
declare done int default 0;
set done= not done;
end|
CALL bug13549_2()|
drop procedure bug13549_2|
drop procedure bug13549_1|
drop table t1,t2; drop table t1,t2;
...@@ -738,3 +738,17 @@ f1 ...@@ -738,3 +738,17 @@ f1
1 1
drop trigger t1_bi; drop trigger t1_bi;
drop tables t1, t2; drop tables t1, t2;
create table t1 (a int);
drop procedure if exists p2;
CREATE PROCEDURE `p2`()
begin
insert into t1 values (1);
end//
create trigger trg before insert on t1 for each row
begin
declare done int default 0;
set done= not done;
end//
CALL p2();
drop procedure p2;
drop table t1;
...@@ -4313,7 +4313,34 @@ call bug12589_1()| ...@@ -4313,7 +4313,34 @@ call bug12589_1()|
# No warnings here # No warnings here
call bug12589_2()| call bug12589_2()|
call bug12589_3()| call bug12589_3()|
drop procedure bug12589_1|
drop procedure bug12589_2|
drop procedure bug12589_3|
#
# BUG#13549 "Server crash with nested stored procedures".
# Server should not crash when during execution of stored procedure
# we have to parse trigger/function definition and this new trigger/
# function has more local variables declared than invoking stored
# procedure and last of these variables is used in argument of NOT
# operator.
#
--disable_warnings
drop procedure if exists bug13549_1|
drop procedure if exists bug13549_2|
--enable_warnings
CREATE PROCEDURE `bug13549_2`()
begin
call bug13549_1();
end|
CREATE PROCEDURE `bug13549_1`()
begin
declare done int default 0;
set done= not done;
end|
CALL bug13549_2()|
drop procedure bug13549_2|
drop procedure bug13549_1|
# #
# BUG#NNNN: New bug synopsis # BUG#NNNN: New bug synopsis
......
...@@ -875,3 +875,31 @@ drop function f1; ...@@ -875,3 +875,31 @@ drop function f1;
drop view v1; drop view v1;
drop table t1, t2, t3; drop table t1, t2, t3;
--enable_parsing --enable_parsing
#
# BUG#13549 "Server crash with nested stored procedures".
# Server should not crash when during execution of stored procedure
# we have to parse trigger/function definition and this new trigger/
# function has more local variables declared than invoking stored
# procedure and last of these variables is used in argument of NOT
# operator.
#
create table t1 (a int);
--disable_warnings
drop procedure if exists p2;
--enable_warnings
DELIMITER //;
CREATE PROCEDURE `p2`()
begin
insert into t1 values (1);
end//
create trigger trg before insert on t1 for each row
begin
declare done int default 0;
set done= not done;
end//
DELIMITER ;//
CALL p2();
drop procedure p2;
drop table t1;
...@@ -868,7 +868,7 @@ Item * ...@@ -868,7 +868,7 @@ Item *
Item_splocal::this_item() Item_splocal::this_item()
{ {
THD *thd= current_thd; THD *thd= current_thd;
DBUG_ASSERT(owner == thd->spcont->owner);
return thd->spcont->get_item(m_offset); return thd->spcont->get_item(m_offset);
} }
...@@ -876,6 +876,7 @@ Item_splocal::this_item() ...@@ -876,6 +876,7 @@ Item_splocal::this_item()
Item ** Item **
Item_splocal::this_item_addr(THD *thd, Item **addr) Item_splocal::this_item_addr(THD *thd, Item **addr)
{ {
DBUG_ASSERT(owner == thd->spcont->owner);
return thd->spcont->get_item_addr(m_offset); return thd->spcont->get_item_addr(m_offset);
} }
...@@ -884,6 +885,7 @@ Item_splocal::this_const_item() const ...@@ -884,6 +885,7 @@ Item_splocal::this_const_item() const
{ {
THD *thd= current_thd; THD *thd= current_thd;
DBUG_ASSERT(owner == thd->spcont->owner);
return thd->spcont->get_item(m_offset); return thd->spcont->get_item(m_offset);
} }
...@@ -893,7 +895,10 @@ Item_splocal::type() const ...@@ -893,7 +895,10 @@ Item_splocal::type() const
THD *thd= current_thd; THD *thd= current_thd;
if (thd->spcont) if (thd->spcont)
{
DBUG_ASSERT(owner == thd->spcont->owner);
return thd->spcont->get_item(m_offset)->type(); return thd->spcont->get_item(m_offset)->type();
}
return NULL_ITEM; // Anything but SUBSELECT_ITEM return NULL_ITEM; // Anything but SUBSELECT_ITEM
} }
......
...@@ -703,6 +703,8 @@ public: ...@@ -703,6 +703,8 @@ public:
}; };
class sp_head;
/* /*
A reference to local SP variable (incl. reference to SP parameter), used in A reference to local SP variable (incl. reference to SP parameter), used in
runtime. runtime.
...@@ -720,6 +722,13 @@ class Item_splocal : public Item ...@@ -720,6 +722,13 @@ class Item_splocal : public Item
uint m_offset; uint m_offset;
public: public:
#ifndef DBUG_OFF
/*
Routine to which this Item_splocal belongs. Used for checking if correct
runtime context is used for variable handling.
*/
sp_head *owner;
#endif
LEX_STRING m_name; LEX_STRING m_name;
/* /*
......
...@@ -494,7 +494,7 @@ void Protocol::init(THD *thd_arg) ...@@ -494,7 +494,7 @@ void Protocol::init(THD *thd_arg)
thd=thd_arg; thd=thd_arg;
packet= &thd->packet; packet= &thd->packet;
convert= &thd->convert_buffer; convert= &thd->convert_buffer;
#ifndef DEBUG_OFF #ifndef DBUG_OFF
field_types= 0; field_types= 0;
#endif #endif
} }
...@@ -547,7 +547,7 @@ bool Protocol::send_fields(List<Item> *list, uint flags) ...@@ -547,7 +547,7 @@ bool Protocol::send_fields(List<Item> *list, uint flags)
(void) my_net_write(&thd->net, buff,(uint) (pos-buff)); (void) my_net_write(&thd->net, buff,(uint) (pos-buff));
} }
#ifndef DEBUG_OFF #ifndef DBUG_OFF
field_types= (enum_field_types*) thd->alloc(sizeof(field_types) * field_types= (enum_field_types*) thd->alloc(sizeof(field_types) *
list->elements); list->elements);
uint count= 0; uint count= 0;
...@@ -644,7 +644,7 @@ bool Protocol::send_fields(List<Item> *list, uint flags) ...@@ -644,7 +644,7 @@ bool Protocol::send_fields(List<Item> *list, uint flags)
item->send(&prot, &tmp); // Send default value item->send(&prot, &tmp); // Send default value
if (prot.write()) if (prot.write())
break; /* purecov: inspected */ break; /* purecov: inspected */
#ifndef DEBUG_OFF #ifndef DBUG_OFF
field_types[count++]= field.type; field_types[count++]= field.type;
#endif #endif
} }
...@@ -728,14 +728,14 @@ bool Protocol::store(I_List<i_string>* str_list) ...@@ -728,14 +728,14 @@ bool Protocol::store(I_List<i_string>* str_list)
void Protocol_simple::prepare_for_resend() void Protocol_simple::prepare_for_resend()
{ {
packet->length(0); packet->length(0);
#ifndef DEBUG_OFF #ifndef DBUG_OFF
field_pos= 0; field_pos= 0;
#endif #endif
} }
bool Protocol_simple::store_null() bool Protocol_simple::store_null()
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
field_pos++; field_pos++;
#endif #endif
char buff[1]; char buff[1];
...@@ -769,7 +769,7 @@ bool Protocol::store_string_aux(const char *from, uint length, ...@@ -769,7 +769,7 @@ bool Protocol::store_string_aux(const char *from, uint length,
bool Protocol_simple::store(const char *from, uint length, bool Protocol_simple::store(const char *from, uint length,
CHARSET_INFO *fromcs, CHARSET_INFO *tocs) CHARSET_INFO *fromcs, CHARSET_INFO *tocs)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_DECIMAL || field_types[field_pos] == MYSQL_TYPE_DECIMAL ||
field_types[field_pos] == MYSQL_TYPE_BIT || field_types[field_pos] == MYSQL_TYPE_BIT ||
...@@ -786,7 +786,7 @@ bool Protocol_simple::store(const char *from, uint length, ...@@ -786,7 +786,7 @@ bool Protocol_simple::store(const char *from, uint length,
CHARSET_INFO *fromcs) CHARSET_INFO *fromcs)
{ {
CHARSET_INFO *tocs= this->thd->variables.character_set_results; CHARSET_INFO *tocs= this->thd->variables.character_set_results;
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_DECIMAL || field_types[field_pos] == MYSQL_TYPE_DECIMAL ||
field_types[field_pos] == MYSQL_TYPE_BIT || field_types[field_pos] == MYSQL_TYPE_BIT ||
...@@ -801,7 +801,7 @@ bool Protocol_simple::store(const char *from, uint length, ...@@ -801,7 +801,7 @@ bool Protocol_simple::store(const char *from, uint length,
bool Protocol_simple::store_tiny(longlong from) bool Protocol_simple::store_tiny(longlong from)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || field_types[field_pos] == MYSQL_TYPE_TINY); DBUG_ASSERT(field_types == 0 || field_types[field_pos] == MYSQL_TYPE_TINY);
field_pos++; field_pos++;
#endif #endif
...@@ -813,7 +813,7 @@ bool Protocol_simple::store_tiny(longlong from) ...@@ -813,7 +813,7 @@ bool Protocol_simple::store_tiny(longlong from)
bool Protocol_simple::store_short(longlong from) bool Protocol_simple::store_short(longlong from)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_YEAR || field_types[field_pos] == MYSQL_TYPE_YEAR ||
field_types[field_pos] == MYSQL_TYPE_SHORT); field_types[field_pos] == MYSQL_TYPE_SHORT);
...@@ -827,7 +827,7 @@ bool Protocol_simple::store_short(longlong from) ...@@ -827,7 +827,7 @@ bool Protocol_simple::store_short(longlong from)
bool Protocol_simple::store_long(longlong from) bool Protocol_simple::store_long(longlong from)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_INT24 || field_types[field_pos] == MYSQL_TYPE_INT24 ||
field_types[field_pos] == MYSQL_TYPE_LONG); field_types[field_pos] == MYSQL_TYPE_LONG);
...@@ -841,7 +841,7 @@ bool Protocol_simple::store_long(longlong from) ...@@ -841,7 +841,7 @@ bool Protocol_simple::store_long(longlong from)
bool Protocol_simple::store_longlong(longlong from, bool unsigned_flag) bool Protocol_simple::store_longlong(longlong from, bool unsigned_flag)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_LONGLONG); field_types[field_pos] == MYSQL_TYPE_LONGLONG);
field_pos++; field_pos++;
...@@ -856,7 +856,7 @@ bool Protocol_simple::store_longlong(longlong from, bool unsigned_flag) ...@@ -856,7 +856,7 @@ bool Protocol_simple::store_longlong(longlong from, bool unsigned_flag)
bool Protocol_simple::store_decimal(const my_decimal *d) bool Protocol_simple::store_decimal(const my_decimal *d)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_NEWDECIMAL); field_types[field_pos] == MYSQL_TYPE_NEWDECIMAL);
field_pos++; field_pos++;
...@@ -870,7 +870,7 @@ bool Protocol_simple::store_decimal(const my_decimal *d) ...@@ -870,7 +870,7 @@ bool Protocol_simple::store_decimal(const my_decimal *d)
bool Protocol_simple::store(float from, uint32 decimals, String *buffer) bool Protocol_simple::store(float from, uint32 decimals, String *buffer)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_FLOAT); field_types[field_pos] == MYSQL_TYPE_FLOAT);
field_pos++; field_pos++;
...@@ -882,7 +882,7 @@ bool Protocol_simple::store(float from, uint32 decimals, String *buffer) ...@@ -882,7 +882,7 @@ bool Protocol_simple::store(float from, uint32 decimals, String *buffer)
bool Protocol_simple::store(double from, uint32 decimals, String *buffer) bool Protocol_simple::store(double from, uint32 decimals, String *buffer)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_DOUBLE); field_types[field_pos] == MYSQL_TYPE_DOUBLE);
field_pos++; field_pos++;
...@@ -896,7 +896,7 @@ bool Protocol_simple::store(Field *field) ...@@ -896,7 +896,7 @@ bool Protocol_simple::store(Field *field)
{ {
if (field->is_null()) if (field->is_null())
return store_null(); return store_null();
#ifndef DEBUG_OFF #ifndef DBUG_OFF
field_pos++; field_pos++;
#endif #endif
char buff[MAX_FIELD_WIDTH]; char buff[MAX_FIELD_WIDTH];
...@@ -917,7 +917,7 @@ bool Protocol_simple::store(Field *field) ...@@ -917,7 +917,7 @@ bool Protocol_simple::store(Field *field)
bool Protocol_simple::store(TIME *tm) bool Protocol_simple::store(TIME *tm)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_DATETIME || field_types[field_pos] == MYSQL_TYPE_DATETIME ||
field_types[field_pos] == MYSQL_TYPE_TIMESTAMP); field_types[field_pos] == MYSQL_TYPE_TIMESTAMP);
...@@ -940,7 +940,7 @@ bool Protocol_simple::store(TIME *tm) ...@@ -940,7 +940,7 @@ bool Protocol_simple::store(TIME *tm)
bool Protocol_simple::store_date(TIME *tm) bool Protocol_simple::store_date(TIME *tm)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_DATE); field_types[field_pos] == MYSQL_TYPE_DATE);
field_pos++; field_pos++;
...@@ -959,7 +959,7 @@ bool Protocol_simple::store_date(TIME *tm) ...@@ -959,7 +959,7 @@ bool Protocol_simple::store_date(TIME *tm)
bool Protocol_simple::store_time(TIME *tm) bool Protocol_simple::store_time(TIME *tm)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_TIME); field_types[field_pos] == MYSQL_TYPE_TIME);
field_pos++; field_pos++;
...@@ -1084,7 +1084,7 @@ bool Protocol_prep::store_longlong(longlong from, bool unsigned_flag) ...@@ -1084,7 +1084,7 @@ bool Protocol_prep::store_longlong(longlong from, bool unsigned_flag)
bool Protocol_prep::store_decimal(const my_decimal *d) bool Protocol_prep::store_decimal(const my_decimal *d)
{ {
#ifndef DEBUG_OFF #ifndef DBUG_OFF
DBUG_ASSERT(field_types == 0 || DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_NEWDECIMAL); field_types[field_pos] == MYSQL_TYPE_NEWDECIMAL);
field_pos++; field_pos++;
......
...@@ -31,7 +31,7 @@ protected: ...@@ -31,7 +31,7 @@ protected:
String *packet; String *packet;
String *convert; String *convert;
uint field_pos; uint field_pos;
#ifndef DEBUG_OFF #ifndef DBUG_OFF
enum enum_field_types *field_types; enum enum_field_types *field_types;
#endif #endif
uint field_count; uint field_count;
......
...@@ -380,6 +380,7 @@ db_find_routine(THD *thd, int type, sp_name *name, sp_head **sphp) ...@@ -380,6 +380,7 @@ db_find_routine(THD *thd, int type, sp_name *name, sp_head **sphp)
{ {
String defstr; String defstr;
LEX *oldlex= thd->lex; LEX *oldlex= thd->lex;
sp_rcontext *save_spcont= thd->spcont;
char olddb[128]; char olddb[128];
bool dbchanged; bool dbchanged;
enum enum_sql_command oldcmd= thd->lex->sql_command; enum enum_sql_command oldcmd= thd->lex->sql_command;
...@@ -422,6 +423,7 @@ db_find_routine(THD *thd, int type, sp_name *name, sp_head **sphp) ...@@ -422,6 +423,7 @@ db_find_routine(THD *thd, int type, sp_name *name, sp_head **sphp)
thd->lex->found_semicolon= tmpfsc; thd->lex->found_semicolon= tmpfsc;
} }
thd->spcont= 0;
if (yyparse(thd) || thd->is_fatal_error || thd->lex->sphead == NULL) if (yyparse(thd) || thd->is_fatal_error || thd->lex->sphead == NULL)
{ {
LEX *newlex= thd->lex; LEX *newlex= thd->lex;
...@@ -439,12 +441,14 @@ db_find_routine(THD *thd, int type, sp_name *name, sp_head **sphp) ...@@ -439,12 +441,14 @@ db_find_routine(THD *thd, int type, sp_name *name, sp_head **sphp)
else else
{ {
if (dbchanged && (ret= mysql_change_db(thd, olddb, 1))) if (dbchanged && (ret= mysql_change_db(thd, olddb, 1)))
goto done; goto db_done;
*sphp= thd->lex->sphead; *sphp= thd->lex->sphead;
(*sphp)->set_info((char *)definer, (uint)strlen(definer), (*sphp)->set_info((char *)definer, (uint)strlen(definer),
created, modified, &chistics, sql_mode); created, modified, &chistics, sql_mode);
(*sphp)->optimize(); (*sphp)->optimize();
} }
db_done:
thd->spcont= save_spcont;
thd->lex->sql_command= oldcmd; thd->lex->sql_command= oldcmd;
thd->variables.sql_mode= old_sql_mode; thd->variables.sql_mode= old_sql_mode;
thd->variables.select_limit= select_limit; thd->variables.select_limit= select_limit;
......
...@@ -1112,6 +1112,9 @@ sp_head::execute_function(THD *thd, Item **argp, uint argcount, Item **resp) ...@@ -1112,6 +1112,9 @@ sp_head::execute_function(THD *thd, Item **argp, uint argcount, Item **resp)
// QQ Should have some error checking here? (types, etc...) // QQ Should have some error checking here? (types, etc...)
if (!(nctx= new sp_rcontext(csize, hmax, cmax))) if (!(nctx= new sp_rcontext(csize, hmax, cmax)))
goto end; goto end;
#ifndef DBUG_OFF
nctx->owner= this;
#endif
for (i= 0 ; i < argcount ; i++) for (i= 0 ; i < argcount ; i++)
{ {
sp_pvar_t *pvar = m_pcont->find_pvar(i); sp_pvar_t *pvar = m_pcont->find_pvar(i);
...@@ -1256,6 +1259,9 @@ int sp_head::execute_procedure(THD *thd, List<Item> *args) ...@@ -1256,6 +1259,9 @@ int sp_head::execute_procedure(THD *thd, List<Item> *args)
{ // Create a temporary old context { // Create a temporary old context
if (!(octx= new sp_rcontext(csize, hmax, cmax))) if (!(octx= new sp_rcontext(csize, hmax, cmax)))
DBUG_RETURN(-1); DBUG_RETURN(-1);
#ifndef DBUG_OFF
octx->owner= 0;
#endif
thd->spcont= octx; thd->spcont= octx;
/* set callers_arena to thd, for upper-level function to work */ /* set callers_arena to thd, for upper-level function to work */
...@@ -1267,6 +1273,9 @@ int sp_head::execute_procedure(THD *thd, List<Item> *args) ...@@ -1267,6 +1273,9 @@ int sp_head::execute_procedure(THD *thd, List<Item> *args)
thd->spcont= save_spcont; thd->spcont= save_spcont;
DBUG_RETURN(-1); DBUG_RETURN(-1);
} }
#ifndef DBUG_OFF
nctx->owner= this;
#endif
if (csize > 0 || hmax > 0 || cmax > 0) if (csize > 0 || hmax > 0 || cmax > 0)
{ {
......
...@@ -66,6 +66,14 @@ class sp_rcontext : public Sql_alloc ...@@ -66,6 +66,14 @@ class sp_rcontext : public Sql_alloc
*/ */
Query_arena *callers_arena; Query_arena *callers_arena;
#ifndef DBUG_OFF
/*
Routine to which this Item_splocal belongs. Used for checking if correct
runtime context is used for variable handling.
*/
sp_head *owner;
#endif
sp_rcontext(uint fsize, uint hmax, uint cmax); sp_rcontext(uint fsize, uint hmax, uint cmax);
~sp_rcontext() ~sp_rcontext()
......
...@@ -410,7 +410,7 @@ protected: ...@@ -410,7 +410,7 @@ protected:
/* /*
The following functions are only used when debugging The following functions are only used when debugging
We don't protect these with ifndef DEBUG_OFF to not have to recompile We don't protect these with ifndef DBUG_OFF to not have to recompile
everything if we want to add checks of the cache at some places. everything if we want to add checks of the cache at some places.
*/ */
void wreck(uint line, const char *message); void wreck(uint line, const char *message);
......
...@@ -1490,7 +1490,13 @@ int select_dumpvar::prepare(List<Item> &list, SELECT_LEX_UNIT *u) ...@@ -1490,7 +1490,13 @@ int select_dumpvar::prepare(List<Item> &list, SELECT_LEX_UNIT *u)
{ {
my_var *mv= gl++; my_var *mv= gl++;
if (mv->local) if (mv->local)
(void)local_vars.push_back(new Item_splocal(mv->s, mv->offset)); {
Item_splocal *var;
(void)local_vars.push_back(var= new Item_splocal(mv->s, mv->offset));
#ifndef DEBUG_OFF
var->owner= mv->owner;
#endif
}
else else
{ {
Item_func_set_user_var *var= new Item_func_set_user_var(mv->s, item); Item_func_set_user_var *var= new Item_func_set_user_var(mv->s, item);
......
...@@ -2075,6 +2075,13 @@ public: ...@@ -2075,6 +2075,13 @@ public:
class my_var : public Sql_alloc { class my_var : public Sql_alloc {
public: public:
LEX_STRING s; LEX_STRING s;
#ifndef DEBUG_OFF
/*
Routine to which this Item_splocal belongs. Used for checking if correct
runtime context is used for variable handling.
*/
sp_head *owner;
#endif
bool local; bool local;
uint offset; uint offset;
enum_field_types type; enum_field_types type;
......
...@@ -646,6 +646,7 @@ bool Table_triggers_list::check_n_load(THD *thd, const char *db, ...@@ -646,6 +646,7 @@ bool Table_triggers_list::check_n_load(THD *thd, const char *db,
char *trg_name_buff; char *trg_name_buff;
List_iterator_fast<ulonglong> itm(triggers->definition_modes_list); List_iterator_fast<ulonglong> itm(triggers->definition_modes_list);
LEX *old_lex= thd->lex, lex; LEX *old_lex= thd->lex, lex;
sp_rcontext *save_spcont= thd->spcont;
ulong save_sql_mode= thd->variables.sql_mode; ulong save_sql_mode= thd->variables.sql_mode;
thd->lex= &lex; thd->lex= &lex;
...@@ -660,6 +661,7 @@ bool Table_triggers_list::check_n_load(THD *thd, const char *db, ...@@ -660,6 +661,7 @@ bool Table_triggers_list::check_n_load(THD *thd, const char *db,
thd->variables.sql_mode= (ulong)*trg_sql_mode; thd->variables.sql_mode= (ulong)*trg_sql_mode;
lex_start(thd, (uchar*)trg_create_str->str, trg_create_str->length); lex_start(thd, (uchar*)trg_create_str->str, trg_create_str->length);
thd->spcont= 0;
if (yyparse((void *)thd) || thd->is_fatal_error) if (yyparse((void *)thd) || thd->is_fatal_error)
{ {
/* /*
...@@ -712,6 +714,7 @@ err_with_lex_cleanup: ...@@ -712,6 +714,7 @@ err_with_lex_cleanup:
// QQ: anything else ? // QQ: anything else ?
lex_end(&lex); lex_end(&lex);
thd->lex= old_lex; thd->lex= old_lex;
thd->spcont= save_spcont;
thd->variables.sql_mode= save_sql_mode; thd->variables.sql_mode= save_sql_mode;
thd->db= save_db.str; thd->db= save_db.str;
thd->db_length= save_db.length; thd->db_length= save_db.length;
......
...@@ -2351,8 +2351,12 @@ sp_case: ...@@ -2351,8 +2351,12 @@ sp_case:
ivar.str= (char *)"_tmp_"; ivar.str= (char *)"_tmp_";
ivar.length= 5; ivar.length= 5;
Item *var= (Item*) new Item_splocal(ivar, Item_splocal *var= new Item_splocal(ivar,
ctx->current_pvars()-1); ctx->current_pvars()-1);
#ifndef DEBUG_OFF
if (var)
var->owner= sp;
#endif
Item *expr= new Item_func_eq(var, $2); Item *expr= new Item_func_eq(var, $2);
i= new sp_instr_jump_if_not(ip, ctx, expr, lex); i= new sp_instr_jump_if_not(ip, ctx, expr, lex);
...@@ -5925,7 +5929,13 @@ select_var_ident: ...@@ -5925,7 +5929,13 @@ select_var_ident:
YYABORT; YYABORT;
else else
{ {
((select_dumpvar *)lex->result)->var_list.push_back( new my_var($1,1,t->offset,t->type)); my_var *var;
((select_dumpvar *)lex->result)->
var_list.push_back(var= new my_var($1,1,t->offset,t->type));
#ifndef DEBUG_OFF
if (var)
var->owner= lex->sphead;
#endif
} }
} }
; ;
...@@ -7224,6 +7234,10 @@ simple_ident: ...@@ -7224,6 +7234,10 @@ simple_ident:
Item_splocal *splocal; Item_splocal *splocal;
splocal= new Item_splocal($1, spv->offset, lex->tok_start_prev - splocal= new Item_splocal($1, spv->offset, lex->tok_start_prev -
lex->sphead->m_tmp_query); lex->sphead->m_tmp_query);
#ifndef DEBUG_OFF
if (splocal)
splocal->owner= lex->sphead;
#endif
$$ = (Item*) splocal; $$ = (Item*) splocal;
lex->variables_used= 1; lex->variables_used= 1;
lex->safe_to_cache_query=0; lex->safe_to_cache_query=0;
......
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