sp_head.cc 48.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* Copyright (C) 2002 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */

#ifdef __GNUC__
#pragma implementation
#endif

#include "mysql_priv.h"
#include "sp_head.h"
23
#include "sp.h"
24 25
#include "sp_pcontext.h"
#include "sp_rcontext.h"
26
#include "sp_cache.h"
27

28 29 30 31 32 33 34 35 36 37 38 39
Item_result
sp_map_result_type(enum enum_field_types type)
{
  switch (type)
  {
  case MYSQL_TYPE_TINY:
  case MYSQL_TYPE_SHORT:
  case MYSQL_TYPE_LONG:
  case MYSQL_TYPE_LONGLONG:
  case MYSQL_TYPE_INT24:
    return INT_RESULT;
  case MYSQL_TYPE_DECIMAL:
unknown's avatar
unknown committed
40 41
  case MYSQL_TYPE_NEWDECIMAL:
    return DECIMAL_RESULT;
42 43 44 45 46 47 48 49
  case MYSQL_TYPE_FLOAT:
  case MYSQL_TYPE_DOUBLE:
    return REAL_RESULT;
  default:
    return STRING_RESULT;
  }
}

50 51 52 53 54 55 56 57 58 59 60
/*
 * Returns TRUE if the 'cmd' is a command that might result in
 * multiple result sets being sent back.
 * Note: This does not include SQLCOM_SELECT which is treated
 *       separately in sql_yacc.yy.
 */
bool
sp_multi_results_command(enum enum_sql_command cmd)
{
  switch (cmd) {
  case SQLCOM_ANALYZE:
61
  case SQLCOM_CHECKSUM:
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
  case SQLCOM_HA_READ:
  case SQLCOM_SHOW_BINLOGS:
  case SQLCOM_SHOW_BINLOG_EVENTS:
  case SQLCOM_SHOW_CHARSETS:
  case SQLCOM_SHOW_COLLATIONS:
  case SQLCOM_SHOW_COLUMN_TYPES:
  case SQLCOM_SHOW_CREATE:
  case SQLCOM_SHOW_CREATE_DB:
  case SQLCOM_SHOW_CREATE_FUNC:
  case SQLCOM_SHOW_CREATE_PROC:
  case SQLCOM_SHOW_DATABASES:
  case SQLCOM_SHOW_ERRORS:
  case SQLCOM_SHOW_FIELDS:
  case SQLCOM_SHOW_GRANTS:
  case SQLCOM_SHOW_INNODB_STATUS:
  case SQLCOM_SHOW_KEYS:
  case SQLCOM_SHOW_LOGS:
  case SQLCOM_SHOW_MASTER_STAT:
  case SQLCOM_SHOW_NEW_MASTER:
  case SQLCOM_SHOW_OPEN_TABLES:
  case SQLCOM_SHOW_PRIVILEGES:
  case SQLCOM_SHOW_PROCESSLIST:
  case SQLCOM_SHOW_SLAVE_HOSTS:
  case SQLCOM_SHOW_SLAVE_STAT:
  case SQLCOM_SHOW_STATUS:
  case SQLCOM_SHOW_STATUS_FUNC:
  case SQLCOM_SHOW_STATUS_PROC:
  case SQLCOM_SHOW_STORAGE_ENGINES:
  case SQLCOM_SHOW_TABLES:
  case SQLCOM_SHOW_VARIABLES:
  case SQLCOM_SHOW_WARNS:
    return TRUE;
  default:
    return FALSE;
  }
}

99 100 101
/* Evaluate a (presumed) func item. Always returns an item, the parameter
** if nothing else.
*/
102 103
Item *
sp_eval_func_item(THD *thd, Item *it, enum enum_field_types type)
104
{
105
  DBUG_ENTER("sp_eval_func_item");
106
  it= it->this_item();
107
  DBUG_PRINT("info", ("type: %d", type));
108

109
  if (!it->fixed && it->fix_fields(thd, 0, &it))
110 111
  {
    DBUG_PRINT("info", ("fix_fields() failed"));
112
    DBUG_RETURN(NULL);
113
  }
114

115
  /* QQ How do we do this? Is there some better way? */
116
  if (type == MYSQL_TYPE_NULL)
117 118
    it= new Item_null();
  else
119
  {
120 121
    switch (sp_map_result_type(type)) {
    case INT_RESULT:
122 123 124 125
      {
	longlong i= it->val_int();

	if (it->null_value)
unknown's avatar
unknown committed
126 127
	{
	  DBUG_PRINT("info", ("INT_RESULT: null"));
128
	  it= new Item_null();
unknown's avatar
unknown committed
129
	}
130
	else
unknown's avatar
unknown committed
131 132
	{
	  DBUG_PRINT("info", ("INT_RESULT: %d", i));
unknown's avatar
unknown committed
133
          it= new Item_int(i);
unknown's avatar
unknown committed
134
	}
135 136
	break;
      }
137
    case REAL_RESULT:
138
      {
139
	double d= it->val_real();
140 141

	if (it->null_value)
unknown's avatar
unknown committed
142 143
	{
	  DBUG_PRINT("info", ("REAL_RESULT: null"));
144
	  it= new Item_null();
unknown's avatar
unknown committed
145
	}
146
	else
unknown's avatar
unknown committed
147
	{
148 149 150 151
	  /* There's some difference between Item::new_item() and the
	   * constructor; the former crashes, the latter works... weird. */
	  uint8 decimals= it->decimals;
	  uint32 max_length= it->max_length;
unknown's avatar
unknown committed
152
	  DBUG_PRINT("info", ("REAL_RESULT: %g", d));
unknown's avatar
unknown committed
153
          it= new Item_float(d);
154 155
	  it->decimals= decimals;
	  it->max_length= max_length;
unknown's avatar
unknown committed
156
	}
157 158
	break;
      }
unknown's avatar
unknown committed
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
    case DECIMAL_RESULT:
      {
        switch (it->result_type())
        {
        case DECIMAL_RESULT:
        {
          my_decimal value, *val= it->val_decimal(&value);
          if (it->null_value)
            it= new Item_null();
          else
            it= new Item_decimal(val);
          break;
        }
        case INT_RESULT:
        {
          longlong val= it->val_int();
          if (it->null_value)
            it= new Item_null();
          else
            it= new Item_decimal(val, (int)it->max_length,
                                 (bool)it->unsigned_flag);
          break;
        }
        case REAL_RESULT:
        {
          double val= it->val_real();
          if (it->null_value)
            it= new Item_null();
          else
            it= new Item_decimal(val, (int)it->max_length,
                                 (int)it->decimals);
          break;
        }
        case STRING_RESULT:
        {
          char buffer[MAX_FIELD_WIDTH];
          String tmp(buffer, sizeof(buffer), it->collation.collation);
          String *val= it->val_str(&tmp);
          if (it->null_value)
            it= new Item_null();
          else
            it= new Item_decimal(val->ptr(), val->length(), val->charset());
          break;
        }
        case ROW_RESULT:
        default:
          DBUG_ASSERT(0);
        }
#ifndef DBUG_OFF
        if (it->null_value)
        {
          DBUG_PRINT("info", ("DECIMAL_RESULT: null"));
        }
        else
        {
          my_decimal value, *val= it->val_decimal(&value);
          int len;
          char *buff=
            (char *)my_alloca(len= my_decimal_string_length(val) + 3);
          String str(buff, len, &my_charset_bin);
          my_decimal2string(0, val, 0, 0, 0, &str);
          DBUG_PRINT("info", ("DECIMAL_RESULT: %s", str.ptr()));
          my_afree(buff);
        }
#endif
        break;
      }
    case STRING_RESULT:
227 228
      {
	char buffer[MAX_FIELD_WIDTH];
unknown's avatar
unknown committed
229
	String tmp(buffer, sizeof(buffer), it->collation.collation);
230 231
	String *s= it->val_str(&tmp);

232
	if (it->null_value)
unknown's avatar
unknown committed
233 234
	{
	  DBUG_PRINT("info", ("default result: null"));
235
	  it= new Item_null();
unknown's avatar
unknown committed
236
	}
237
	else
unknown's avatar
unknown committed
238 239
	{
	  DBUG_PRINT("info",("default result: %*s",s->length(),s->c_ptr_quick()));
240 241
	  it= new Item_string(thd->strmake(s->c_ptr_quick(), s->length()),
			      s->length(), it->collation.collation);
unknown's avatar
unknown committed
242
	}
243 244
	break;
      }
unknown's avatar
unknown committed
245 246 247
    case ROW_RESULT:
    default:
      DBUG_ASSERT(0);
248 249 250
    }
  }

251
  DBUG_RETURN(it);
252 253
}

254 255 256 257 258 259 260 261 262 263 264

/*
 *
 *  sp_name
 *
 */

void
sp_name::init_qname(THD *thd)
{
  m_qname.length= m_db.length+m_name.length+1;
unknown's avatar
unknown committed
265
  m_qname.str= thd->alloc(m_qname.length+1);
266 267 268 269 270
  sprintf(m_qname.str, "%*s.%*s",
	  m_db.length, (m_db.length ? m_db.str : ""),
	  m_name.length, m_name.str);
}

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
sp_name *
sp_name_current_db_new(THD *thd, LEX_STRING name)
{
  sp_name *qname;

  if (! thd->db)
    qname= new sp_name(name);
  else
  {
    LEX_STRING db;

    db.length= strlen(thd->db);
    db.str= thd->strmake(thd->db, db.length);
    qname= new sp_name(db, name);
  }
  qname->init_qname(thd);
  return qname;
}


291 292 293 294 295 296 297 298 299
/* ------------------------------------------------------------------ */


/*
 *
 *  sp_head
 *
 */

300 301 302 303 304 305 306 307
void *
sp_head::operator new(size_t size)
{
  DBUG_ENTER("sp_head::operator new");
  MEM_ROOT own_root;
  sp_head *sp;

  init_alloc_root(&own_root, MEM_ROOT_BLOCK_SIZE, MEM_ROOT_PREALLOC);
unknown's avatar
unknown committed
308 309
  sp= (sp_head *) alloc_root(&own_root, size);
  sp->main_mem_root= own_root;
310
  DBUG_PRINT("info", ("mem_root 0x%lx", (ulong) &sp->mem_root));
311 312 313 314 315 316 317 318
  DBUG_RETURN(sp);
}

void 
sp_head::operator delete(void *ptr, size_t size)
{
  DBUG_ENTER("sp_head::operator delete");
  MEM_ROOT own_root;
unknown's avatar
unknown committed
319
  sp_head *sp= (sp_head *) ptr;
320

unknown's avatar
unknown committed
321 322
  /* Make a copy of main_mem_root as free_root will free the sp */
  own_root= sp->main_mem_root;
323 324
  DBUG_PRINT("info", ("mem_root 0x%lx moved to 0x%lx",
                      (ulong) &sp->mem_root, (ulong) &own_root));
325 326 327 328 329
  free_root(&own_root, MYF(0));

  DBUG_VOID_RETURN;
}

330

331
sp_head::sp_head()
332
  :Item_arena((bool)FALSE), m_returns_cs(NULL), m_has_return(FALSE),
333
   m_simple_case(FALSE), m_multi_results(FALSE), m_in_handler(FALSE)
334
{
335 336
  extern byte *
    sp_table_key(const byte *ptr, uint *plen, my_bool first);
337
  DBUG_ENTER("sp_head::sp_head");
338

339
  state= INITIALIZED;
340 341
  m_backpatch.empty();
  m_lex.empty();
342
  hash_init(&m_sptabs, system_charset_info, 0, 0, 0, sp_table_key, 0, 0);
343 344 345
  DBUG_VOID_RETURN;
}

346

347
void
348
sp_head::init(LEX *lex)
349 350
{
  DBUG_ENTER("sp_head::init");
351

352
  lex->spcont= m_pcont= new sp_pcontext(NULL);
353 354 355 356 357
  /*
    Altough trg_table_fields list is used only in triggers we init for all
    types of stored procedures to simplify reset_lex()/restore_lex() code.
  */
  lex->trg_table_fields.empty();
358 359
  my_init_dynamic_array(&m_instr, sizeof(sp_instr *), 16, 8);
  m_param_begin= m_param_end= m_returns_begin= m_returns_end= m_body_begin= 0;
360 361 362 363
  m_qname.str= m_db.str= m_name.str= m_params.str= m_retstr.str=
    m_body.str= m_defstr.str= 0;
  m_qname.length= m_db.length= m_name.length= m_params.length=
    m_retstr.length= m_body.length= m_defstr.length= 0;
364
  m_returns_cs= NULL;
365 366 367 368
  DBUG_VOID_RETURN;
}

void
369
sp_head::init_strings(THD *thd, LEX *lex, sp_name *name)
370 371
{
  DBUG_ENTER("sp_head::init_strings");
372
  uint n;			/* Counter for nul trimming */ 
unknown's avatar
unknown committed
373
  /* During parsing, we must use thd->mem_root */
unknown's avatar
unknown committed
374
  MEM_ROOT *root= thd->mem_root;
375

376
  /* We have to copy strings to get them into the right memroot */
377 378
  if (name)
  {
379
    m_db.length= name->m_db.length;
380
    if (name->m_db.length == 0)
381
      m_db.str= NULL;
382 383 384 385 386 387 388 389 390 391
    else
      m_db.str= strmake_root(root, name->m_db.str, name->m_db.length);
    m_name.length= name->m_name.length;
    m_name.str= strmake_root(root, name->m_name.str, name->m_name.length);

    if (name->m_qname.length == 0)
      name->init_qname(thd);
    m_qname.length= name->m_qname.length;
    m_qname.str= strmake_root(root, name->m_qname.str, m_qname.length);
  }
392
  else if (thd->db)
393
  {
394
    m_db.length= thd->db_length;
395
    m_db.str= strmake_root(root, thd->db, m_db.length);
396
  }
397

398
  if (m_param_begin && m_param_end)
399
  {
400 401 402
    m_params.length= m_param_end - m_param_begin;
    m_params.str= strmake_root(root,
                               (char *)m_param_begin, m_params.length);
403
  }
404

405 406 407
  if (m_returns_begin && m_returns_end)
  {
    /* QQ KLUDGE: We can't seem to cut out just the type in the parser
408 409 410 411
       (without the RETURNS), so we'll have to do it here. :-(
       Furthermore, if there's a character type as well, it's not include
       (beyond the m_returns_end pointer), in which case we need
       m_returns_cs. */
412 413 414 415 416 417 418 419 420 421 422
    char *p= (char *)m_returns_begin+strspn((char *)m_returns_begin,"\t\n\r ");
    p+= strcspn(p, "\t\n\r ");
    p+= strspn(p, "\t\n\r ");
    if (p < (char *)m_returns_end)
      m_returns_begin= (uchar *)p;
    /* While we're at it, trim the end too. */
    p= (char *)m_returns_end-1;
    while (p > (char *)m_returns_begin &&
	   (*p == '\t' || *p == '\n' || *p == '\r' || *p == ' '))
      p-= 1;
    m_returns_end= (uchar *)p+1;
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
    if (m_returns_cs)
    {
      String s((char *)m_returns_begin, m_returns_end - m_returns_begin,
	       system_charset_info);

      s.append(' ');
      s.append(m_returns_cs->csname);
      m_retstr.length= s.length();
      m_retstr.str= strmake_root(root, s.ptr(), m_retstr.length);
    }
    else
    {
      m_retstr.length= m_returns_end - m_returns_begin;
      m_retstr.str= strmake_root(root,
				 (char *)m_returns_begin, m_retstr.length);
    }
439
  }
440 441 442 443 444 445 446 447
  m_body.length= lex->ptr - m_body_begin;
  /* Trim nuls at the end */
  n= 0;
  while (m_body.length && m_body_begin[m_body.length-1] == '\0')
  {
    m_body.length-= 1;
    n+= 1;
  }
unknown's avatar
unknown committed
448
  m_body.str= strmake_root(root, (char *)m_body_begin, m_body.length);
449 450
  m_defstr.length= lex->ptr - lex->buf;
  m_defstr.length-= n;
unknown's avatar
unknown committed
451
  m_defstr.str= strmake_root(root, (char *)lex->buf, m_defstr.length);
452
  DBUG_VOID_RETURN;
453 454 455 456 457
}

int
sp_head::create(THD *thd)
{
458
  DBUG_ENTER("sp_head::create");
459 460
  int ret;

461 462
  DBUG_PRINT("info", ("type: %d name: %s params: %s body: %s",
		      m_type, m_name.str, m_params.str, m_body.str));
463

464
#ifndef DBUG_OFF
465
  optimize();
466
  {
467 468 469 470 471 472
    String s;
    sp_instr *i;
    uint ip= 0;
    while ((i = get_instr(ip)))
    {
      char buf[8];
473

474 475 476 477 478 479 480 481
      sprintf(buf, "%4u: ", ip);
      s.append(buf);
      i->print(&s);
      s.append('\n');
      ip+= 1;
    }
    s.append('\0');
    DBUG_PRINT("info", ("Code %s\n%s", m_qname.str, s.ptr()));
482 483 484
  }
#endif

485
  if (m_type == TYPE_ENUM_FUNCTION)
486
    ret= sp_create_function(thd, this);
487
  else
488
    ret= sp_create_procedure(thd, this);
489

490
  DBUG_RETURN(ret);
491 492
}

493 494 495 496 497 498 499
sp_head::~sp_head()
{
  destroy();
  if (m_thd)
    restore_thd_mem_root(m_thd);
}

500 501 502
void
sp_head::destroy()
{
503 504
  sp_instr *i;
  LEX *lex;
unknown's avatar
unknown committed
505 506
  DBUG_ENTER("sp_head::destroy");
  DBUG_PRINT("info", ("name: %s", m_name.str));
507 508 509

  for (uint ip = 0 ; (i = get_instr(ip)) ; ip++)
    delete i;
510 511
  delete_dynamic(&m_instr);
  m_pcont->destroy();
512
  free_items(free_list);
513 514 515 516 517
  while ((lex= (LEX *)m_lex.pop()))
  {
    if (lex != &m_thd->main_lex) // We got interrupted and have lex'es left
      delete lex;
  }
518 519
  if (m_sptabs.array.buffer)
    hash_free(&m_sptabs);
520
  DBUG_VOID_RETURN;
521
}
522

523 524 525
int
sp_head::execute(THD *thd)
{
526
  DBUG_ENTER("sp_head::execute");
527
  char olddb[128];
528
  bool dbchanged;
529
  sp_rcontext *ctx;
530
  int ret= 0;
531
  uint ip= 0;
532 533
  Item_arena *old_arena;

534

535
#ifndef EMBEDDED_LIBRARY
536
  if (check_stack_overrun(thd, olddb))
537 538 539 540
  {
    DBUG_RETURN(-1);
  }
#endif
541

542
  dbchanged= FALSE;
543 544
  if (m_db.length &&
      (ret= sp_use_new_db(thd, m_db.str, olddb, sizeof(olddb), 0, &dbchanged)))
545
    goto done;
546

547
  if ((ctx= thd->spcont))
548
    ctx->clear_handler();
549
  thd->query_error= 0;
550
  old_arena= thd->current_arena;
551
  thd->current_arena= this;
552

553 554 555
  do
  {
    sp_instr *i;
556
    uint hip;			// Handler ip
557 558 559 560 561 562

    i = get_instr(ip);	// Returns NULL when we're done.
    if (i == NULL)
      break;
    DBUG_PRINT("execute", ("Instruction %u", ip));
    ret= i->execute(thd, &ip);
563 564
    if (i->free_list)
      cleanup_items(i->free_list);
565
    // Check if an exception has occurred and a handler has been found
566 567 568
    // Note: We havo to check even if ret==0, since warnings (and some
    //       errors don't return a non-zero value.
    if (!thd->killed && ctx)
569 570 571 572 573 574 575 576 577 578
    {
      uint hf;

      switch (ctx->found_handler(&hip, &hf))
      {
      case SP_HANDLER_NONE:
	break;
      case SP_HANDLER_CONTINUE:
	ctx->save_variables(hf);
	ctx->push_hstack(ip);
unknown's avatar
unknown committed
579
        // Fall through
580 581 582 583
      default:
	ip= hip;
	ret= 0;
	ctx->clear_handler();
584
	ctx->in_handler= TRUE;
unknown's avatar
unknown committed
585
        thd->clear_error();
586 587 588
	continue;
      }
    }
unknown's avatar
unknown committed
589
  } while (ret == 0 && !thd->killed);
590

591
  cleanup_items(thd->current_arena->free_list);
592 593
  thd->current_arena= old_arena;

594
 done:
595 596
  DBUG_PRINT("info", ("ret=%d killed=%d query_error=%d",
		      ret, thd->killed, thd->query_error));
597

unknown's avatar
unknown committed
598
  if (thd->killed)
599
    ret= -1;
600 601
  /* If the DB has changed, the pointer has changed too, but the
     original thd->db will then have been freed */
602
  if (dbchanged)
603
  {
604
    if (! thd->killed)
605
      ret= sp_change_db(thd, olddb, 0);
606
  }
607 608 609 610 611 612 613
  DBUG_RETURN(ret);
}


int
sp_head::execute_function(THD *thd, Item **argp, uint argcount, Item **resp)
{
614
  DBUG_ENTER("sp_head::execute_function");
615
  DBUG_PRINT("info", ("function %s", m_name.str));
616 617 618 619
  uint csize = m_pcont->max_pvars();
  uint params = m_pcont->current_pvars();
  uint hmax = m_pcont->max_handlers();
  uint cmax = m_pcont->max_cursors();
620 621 622 623 624
  sp_rcontext *octx = thd->spcont;
  sp_rcontext *nctx = NULL;
  uint i;
  int ret;

unknown's avatar
unknown committed
625 626 627 628
  if (argcount != params)
  {
    // Need to use my_printf_error here, or it will not terminate the
    // invoking query properly.
629 630
    my_error(ER_SP_WRONG_NO_OF_ARGS, MYF(0),
             "FUNCTION", m_name.str, params, argcount);
unknown's avatar
unknown committed
631 632 633 634
    DBUG_RETURN(-1);
  }

  // QQ Should have some error checking here? (types, etc...)
635
  nctx= new sp_rcontext(csize, hmax, cmax);
636 637
  for (i= 0 ; i < params && i < argcount ; i++)
  {
638
    sp_pvar_t *pvar = m_pcont->find_pvar(i);
639
    Item *it= sp_eval_func_item(thd, *argp++, pvar->type);
640

641 642 643 644 645 646
    if (it)
      nctx->push_item(it);
    else
    {
      DBUG_RETURN(-1);
    }
647
  }
unknown's avatar
unknown committed
648 649 650 651 652 653
#ifdef NOT_WORKING
  /*
    Close tables opened for subselect in argument list
    This can't be done as this will close all other tables used
    by the query.
  */
654
  close_thread_tables(thd);
unknown's avatar
unknown committed
655
#endif
656
  // The rest of the frame are local variables which are all IN.
657 658 659 660 661 662 663 664 665 666 667
  // Default all variables to null (those with default clauses will
  // be set by an set instruction).
  {
    Item_null *nit= NULL;	// Re-use this, and only create if needed
    for (; i < csize ; i++)
    {
      if (! nit)
	nit= new Item_null();
      nctx->push_item(nit);
    }
  }
668 669 670
  thd->spcont= nctx;

  ret= execute(thd);
671 672

  if (m_type == TYPE_ENUM_FUNCTION && ret == 0)
673
  {
674
    /* We need result only in function but not in trigger */
675 676 677 678 679 680
    Item *it= nctx->get_result();

    if (it)
      *resp= it;
    else
    {
681
      my_error(ER_SP_NORETURNEND, MYF(0), m_name.str);
682 683 684
      ret= -1;
    }
  }
685

686
  nctx->pop_all_cursors();	// To avoid memory leaks after an error
687 688 689 690 691 692 693
  thd->spcont= octx;
  DBUG_RETURN(ret);
}

int
sp_head::execute_procedure(THD *thd, List<Item> *args)
{
694
  DBUG_ENTER("sp_head::execute_procedure");
695
  DBUG_PRINT("info", ("procedure %s", m_name.str));
696
  int ret= 0;
697 698 699 700
  uint csize = m_pcont->max_pvars();
  uint params = m_pcont->current_pvars();
  uint hmax = m_pcont->max_handlers();
  uint cmax = m_pcont->max_cursors();
701 702
  sp_rcontext *octx = thd->spcont;
  sp_rcontext *nctx = NULL;
703
  my_bool tmp_octx = FALSE;	// True if we have allocated a temporary octx
704

unknown's avatar
unknown committed
705 706
  if (args->elements != params)
  {
707 708
    my_error(ER_SP_WRONG_NO_OF_ARGS, MYF(0), "PROCEDURE",
             m_name.str, params, args->elements);
unknown's avatar
unknown committed
709 710 711
    DBUG_RETURN(-1);
  }

712
  if (csize > 0 || hmax > 0 || cmax > 0)
713
  {
714
    Item_null *nit= NULL;	// Re-use this, and only create if needed
715
    uint i;
716
    List_iterator_fast<Item> li(*args);
717
    Item *it;
718

719
    nctx= new sp_rcontext(csize, hmax, cmax);
720 721
    if (! octx)
    {				// Create a temporary old context
722 723
      octx= new sp_rcontext(csize, hmax, cmax);
      tmp_octx= TRUE;
724
    }
unknown's avatar
unknown committed
725
    // QQ: Should do type checking?
726 727
    for (i = 0 ; (it= li++) && i < params ; i++)
    {
728
      sp_pvar_t *pvar = m_pcont->find_pvar(i);
729

730 731
      if (! pvar)
	nctx->set_oindex(i, -1); // Shouldn't happen
732
      else
733 734
      {
	if (pvar->mode == sp_param_out)
735 736 737 738 739
	{
	  if (! nit)
	    nit= new Item_null();
	  nctx->push_item(nit); // OUT
	}
740
	else
741 742 743 744 745 746 747 748 749 750 751
	{
	  Item *it2= sp_eval_func_item(thd, it,pvar->type);

	  if (it2)
	    nctx->push_item(it2); // IN or INOUT
	  else
	  {
	    ret= -1;		// Eval failed
	    break;
	  }
	}
752
	// Note: If it's OUT or INOUT, it must be a variable.
753 754
	// QQ: We can check for global variables here, or should we do it
	//     while parsing?
755 756 757 758 759
	if (pvar->mode == sp_param_in)
	  nctx->set_oindex(i, -1); // IN
	else			// OUT or INOUT
	  nctx->set_oindex(i, static_cast<Item_splocal *>(it)->get_offset());
      }
760
    }
761 762
    // Clean up the joins before closing the tables.
    thd->lex->unit.cleanup();
763 764 765
    // Close tables opened for subselect in argument list
    close_thread_tables(thd);

766
    // The rest of the frame are local variables which are all IN.
767 768
    // Default all variables to null (those with default clauses will
    // be set by an set instruction).
769
    for (; i < csize ; i++)
770
    {
771 772 773
      if (! nit)
	nit= new Item_null();
      nctx->push_item(nit);
774
    }
775 776 777
    thd->spcont= nctx;
  }

778 779
  if (! ret)
    ret= execute(thd);
780

unknown's avatar
unknown committed
781
  if (!ret && csize > 0)
782
  {
783
    List_iterator_fast<Item> li(*args);
784
    Item *it;
785 786 787 788

    // Copy back all OUT or INOUT values to the previous frame, or
    // set global user variables
    for (uint i = 0 ; (it= li++) && i < params ; i++)
789 790 791 792
    {
      int oi = nctx->get_oindex(i);

      if (oi >= 0)
793 794 795 796
      {
	if (! tmp_octx)
	  octx->set_item(nctx->get_oindex(i), nctx->get_item(i));
	else
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
	{
	  // QQ Currently we just silently ignore non-user-variable arguments.
	  //    We should check this during parsing, when setting up the call
	  //    above
	  if (it->type() == Item::FUNC_ITEM)
	  {
	    Item_func *fi= static_cast<Item_func*>(it);

	    if (fi->functype() == Item_func::GUSERVAR_FUNC)
	    {			// A global user variable
	      Item *item= nctx->get_item(i);
	      Item_func_set_user_var *suv;
	      Item_func_get_user_var *guv=
		static_cast<Item_func_get_user_var*>(fi);

	      suv= new Item_func_set_user_var(guv->get_name(), item);
unknown's avatar
unknown committed
813 814 815 816
              /*
                we do not check suv->fixed, bacause it can't be fixed after
                creation
              */
817 818
	      suv->fix_fields(thd, NULL, &item);
	      suv->fix_length_and_dec();
unknown's avatar
unknown committed
819
	      suv->check();
820 821 822
	      suv->update();
	    }
	  }
823 824
	}
      }
825 826 827
    }
  }

828 829 830 831 832 833
  if (tmp_octx)
    octx= NULL;
  if (nctx)
    nctx->pop_all_cursors();	// To avoid memory leaks after an error
  thd->spcont= octx;

834
  DBUG_RETURN(ret);
835 836 837
}


838
// Reset lex during parsing, before we parse a sub statement.
839 840 841
void
sp_head::reset_lex(THD *thd)
{
842 843
  DBUG_ENTER("sp_head::reset_lex");
  LEX *sublex;
844
  LEX *oldlex= thd->lex;
845

846
  (void)m_lex.push_front(oldlex);
847
  thd->lex= sublex= new st_lex;
unknown's avatar
unknown committed
848

849
  /* Reset most stuff. The length arguments doesn't matter here. */
unknown's avatar
unknown committed
850
  lex_start(thd, oldlex->buf, (ulong) (oldlex->end_of_query - oldlex->ptr));
unknown's avatar
unknown committed
851

852
  /* We must reset ptr and end_of_query again */
853 854 855
  sublex->ptr= oldlex->ptr;
  sublex->end_of_query= oldlex->end_of_query;
  sublex->tok_start= oldlex->tok_start;
unknown's avatar
unknown committed
856
  sublex->yylineno= oldlex->yylineno;
857
  /* And keep the SP stuff too */
858 859
  sublex->sphead= oldlex->sphead;
  sublex->spcont= oldlex->spcont;
860 861
  /* And trigger related stuff too */
  sublex->trg_chistics= oldlex->trg_chistics;
862
  sublex->trg_table_fields.empty();
863
  sublex->sp_lex_in_use= FALSE;
864
  DBUG_VOID_RETURN;
865 866
}

867
// Restore lex during parsing, after we have parsed a sub statement.
868 869 870
void
sp_head::restore_lex(THD *thd)
{
871 872
  DBUG_ENTER("sp_head::restore_lex");
  LEX *sublex= thd->lex;
873 874 875 876
  LEX *oldlex= (LEX *)m_lex.pop();

  if (! oldlex)
    return;			// Nothing to restore
877

878
  // Update some state in the old one first
879 880
  oldlex->ptr= sublex->ptr;
  oldlex->next_state= sublex->next_state;
881
  oldlex->trg_table_fields.push_back(&sublex->trg_table_fields);
882

883
  // Collect some data from the sub statement lex.
884 885
  sp_merge_hash(&oldlex->spfuns, &sublex->spfuns);
  sp_merge_hash(&oldlex->spprocs, &sublex->spprocs);
886
  // Merge used tables
887
  sp_merge_table_list(thd, &m_sptabs, sublex->query_tables, sublex);
888 889 890
  if (! sublex->sp_lex_in_use)
    delete sublex;
  thd->lex= oldlex;
891
  DBUG_VOID_RETURN;
892 893
}

894
void
895
sp_head::push_backpatch(sp_instr *i, sp_label_t *lab)
896
{
897
  bp_t *bp= (bp_t *)sql_alloc(sizeof(bp_t));
898 899 900 901 902 903 904

  if (bp)
  {
    bp->lab= lab;
    bp->instr= i;
    (void)m_backpatch.push_front(bp);
  }
905 906 907
}

void
908
sp_head::backpatch(sp_label_t *lab)
909
{
910
  bp_t *bp;
911
  uint dest= instructions();
912
  List_iterator_fast<bp_t> li(m_backpatch);
913

914
  while ((bp= li++))
915 916 917 918
  {
    if (bp->lab == lab ||
	(bp->lab->type == SP_LAB_REF &&
	 my_strcasecmp(system_charset_info, bp->lab->name, lab->name) == 0))
919
    {
920 921 922 923 924
      if (bp->lab->type != SP_LAB_REF)
	bp->instr->backpatch(dest, lab->ctx);
      else
      {
	sp_label_t *dstlab= bp->lab->ctx->find_label(lab->name);
925

926 927 928 929 930 931
	if (dstlab)
	{
	  bp->lab= lab;
	  bp->instr->backpatch(dest, dstlab->ctx);
	}
      }
932 933 934 935 936 937 938 939 940
    }
  }
}

int
sp_head::check_backpatch(THD *thd)
{
  bp_t *bp;
  List_iterator_fast<bp_t> li(m_backpatch);
941

942 943 944 945
  while ((bp= li++))
  {
    if (bp->lab->type == SP_LAB_REF)
    {
946
      my_error(ER_SP_LILABEL_MISMATCH, MYF(0), "GOTO", bp->lab->name);
947
      return -1;
948
    }
949 950
  }
  return 0;
951 952
}

953 954 955
void
sp_head::set_info(char *definer, uint definerlen,
		  longlong created, longlong modified,
956
		  st_sp_chistics *chistics, ulong sql_mode)
957 958 959 960 961 962 963
{
  char *p= strchr(definer, '@');
  uint len;

  if (! p)
    p= definer;		// Weird...
  len= p-definer;
unknown's avatar
unknown committed
964
  m_definer_user.str= strmake_root(mem_root, definer, len);
965 966
  m_definer_user.length= len;
  len= definerlen-len-1;
unknown's avatar
unknown committed
967
  m_definer_host.str= strmake_root(mem_root, p+1, len);
968 969 970
  m_definer_host.length= len;
  m_created= created;
  m_modified= modified;
unknown's avatar
unknown committed
971 972
  m_chistics= (st_sp_chistics *) memdup_root(mem_root, (char*) chistics,
                                             sizeof(*chistics));
973 974 975
  if (m_chistics->comment.length == 0)
    m_chistics->comment.str= 0;
  else
unknown's avatar
unknown committed
976
    m_chistics->comment.str= strmake_root(mem_root,
977 978
					  m_chistics->comment.str,
					  m_chistics->comment.length);
979
  m_sql_mode= sql_mode;
980 981
}

982 983 984
void
sp_head::reset_thd_mem_root(THD *thd)
{
985
  DBUG_ENTER("sp_head::reset_thd_mem_root");
986
  m_thd_root= thd->mem_root;
unknown's avatar
unknown committed
987
  thd->mem_root= &main_mem_root;
988 989 990
  DBUG_PRINT("info", ("mem_root 0x%lx moved to thd mem root 0x%lx",
                      (ulong) &mem_root, (ulong) &thd->mem_root));
  free_list= thd->free_list; // Keep the old list
991 992 993
  thd->free_list= NULL;	// Start a new one
  /* Copy the db, since substatements will point to it */
  m_thd_db= thd->db;
unknown's avatar
unknown committed
994
  thd->db= thd->strmake(thd->db, thd->db_length);
995
  m_thd= thd;
996
  DBUG_VOID_RETURN;
997 998 999 1000 1001
}

void
sp_head::restore_thd_mem_root(THD *thd)
{
1002 1003
  DBUG_ENTER("sp_head::restore_thd_mem_root");
  Item *flist= free_list;	// The old list
1004 1005 1006
  set_item_arena(thd);          // Get new free_list and mem_root
  state= INITIALIZED;

1007 1008
  DBUG_PRINT("info", ("mem_root 0x%lx returned from thd mem root 0x%lx",
                      (ulong) &mem_root, (ulong) &thd->mem_root));
1009 1010 1011 1012
  thd->free_list= flist;	// Restore the old one
  thd->db= m_thd_db;		// Restore the original db pointer
  thd->mem_root= m_thd_root;
  m_thd= NULL;
1013
  DBUG_VOID_RETURN;
1014 1015 1016
}


unknown's avatar
unknown committed
1017 1018 1019 1020 1021 1022 1023 1024
int
sp_head::show_create_procedure(THD *thd)
{
  Protocol *protocol= thd->protocol;
  char buff[2048];
  String buffer(buff, sizeof(buff), system_charset_info);
  int res;
  List<Item> field_list;
1025 1026 1027 1028
  ulong old_sql_mode;
  sys_var *sql_mode_var;
  byte *sql_mode_str;
  ulong sql_mode_len;
unknown's avatar
unknown committed
1029 1030 1031

  DBUG_ENTER("sp_head::show_create_procedure");
  DBUG_PRINT("info", ("procedure %s", m_name.str));
1032 1033 1034
  LINT_INIT(sql_mode_str);
  LINT_INIT(sql_mode_len);
  
1035 1036 1037 1038 1039 1040
  old_sql_mode= thd->variables.sql_mode;
  thd->variables.sql_mode= m_sql_mode;
  sql_mode_var= find_sys_var("SQL_MODE", 8);
  if (sql_mode_var)
  {
    sql_mode_str= sql_mode_var->value_ptr(thd, OPT_SESSION, 0);
1041
    sql_mode_len= strlen((char*) sql_mode_str);
1042 1043 1044 1045 1046
  }

  field_list.push_back(new Item_empty_string("Procedure", NAME_LEN));
  if (sql_mode_var)
    field_list.push_back(new Item_empty_string("sql_mode", sql_mode_len));
unknown's avatar
unknown committed
1047 1048
  // 1024 is for not to confuse old clients
  field_list.push_back(new Item_empty_string("Create Procedure",
1049
					     max(buffer.length(), 1024)));
1050 1051
  if (protocol->send_fields(&field_list, Protocol::SEND_NUM_ROWS |
                                         Protocol::SEND_EOF))
1052 1053 1054 1055
  {
    res= 1;
    goto done;
  }
unknown's avatar
unknown committed
1056 1057
  protocol->prepare_for_resend();
  protocol->store(m_name.str, m_name.length, system_charset_info);
1058
  if (sql_mode_var)
1059
    protocol->store((char*) sql_mode_str, sql_mode_len, system_charset_info);
unknown's avatar
unknown committed
1060 1061 1062
  protocol->store(m_defstr.str, m_defstr.length, system_charset_info);
  res= protocol->write();
  send_eof(thd);
1063 1064 1065

 done:
  thd->variables.sql_mode= old_sql_mode;
unknown's avatar
unknown committed
1066 1067 1068
  DBUG_RETURN(res);
}

1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085

/*
  Add instruction to SP

  SYNOPSIS
    sp_head::add_instr()
    instr   Instruction
*/

void sp_head::add_instr(sp_instr *instr)
{
  instr->free_list= m_thd->free_list;
  m_thd->free_list= 0;
  insert_dynamic(&m_instr, (gptr)&instr);
}


unknown's avatar
unknown committed
1086 1087 1088 1089 1090 1091 1092 1093
int
sp_head::show_create_function(THD *thd)
{
  Protocol *protocol= thd->protocol;
  char buff[2048];
  String buffer(buff, sizeof(buff), system_charset_info);
  int res;
  List<Item> field_list;
1094 1095 1096 1097
  ulong old_sql_mode;
  sys_var *sql_mode_var;
  byte *sql_mode_str;
  ulong sql_mode_len;
unknown's avatar
unknown committed
1098 1099
  DBUG_ENTER("sp_head::show_create_function");
  DBUG_PRINT("info", ("procedure %s", m_name.str));
1100 1101
  LINT_INIT(sql_mode_str);
  LINT_INIT(sql_mode_len);
1102

1103 1104 1105 1106 1107 1108
  old_sql_mode= thd->variables.sql_mode;
  thd->variables.sql_mode= m_sql_mode;
  sql_mode_var= find_sys_var("SQL_MODE", 8);
  if (sql_mode_var)
  {
    sql_mode_str= sql_mode_var->value_ptr(thd, OPT_SESSION, 0);
1109
    sql_mode_len= strlen((char*) sql_mode_str);
1110 1111
  }

unknown's avatar
unknown committed
1112
  field_list.push_back(new Item_empty_string("Function",NAME_LEN));
1113 1114
  if (sql_mode_var)
    field_list.push_back(new Item_empty_string("sql_mode", sql_mode_len));
unknown's avatar
unknown committed
1115 1116
  field_list.push_back(new Item_empty_string("Create Function",
					     max(buffer.length(),1024)));
1117 1118
  if (protocol->send_fields(&field_list,
                            Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF))
1119 1120 1121 1122
  {
    res= 1;
    goto done;
  }
unknown's avatar
unknown committed
1123 1124
  protocol->prepare_for_resend();
  protocol->store(m_name.str, m_name.length, system_charset_info);
1125
  if (sql_mode_var)
1126
    protocol->store((char*) sql_mode_str, sql_mode_len, system_charset_info);
unknown's avatar
unknown committed
1127 1128 1129
  protocol->store(m_defstr.str, m_defstr.length, system_charset_info);
  res= protocol->write();
  send_eof(thd);
1130 1131 1132

 done:
  thd->variables.sql_mode= old_sql_mode;
unknown's avatar
unknown committed
1133 1134
  DBUG_RETURN(res);
}
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186

void
sp_head::optimize()
{
  List<sp_instr> bp;
  sp_instr *i;
  uint src, dst;

  opt_mark(0);

  bp.empty();
  src= dst= 0;
  while ((i= get_instr(src)))
  {
    if (! i->marked)
    {
      delete i;
      src+= 1;
    }
    else
    {
      if (src != dst)
      {
	sp_instr *ibp;
	List_iterator_fast<sp_instr> li(bp);

	set_dynamic(&m_instr, (gptr)&i, dst);
	while ((ibp= li++))
	{
	  sp_instr_jump *ji= static_cast<sp_instr_jump *>(ibp);
	  if (ji->m_dest == src)
	    ji->m_dest= dst;
	}
      }
      i->opt_move(dst, &bp);
      src+= 1;
      dst+= 1;
    }
  }
  m_instr.elements= dst;
  bp.empty();
}

void
sp_head::opt_mark(uint ip)
{
  sp_instr *i;

  while ((i= get_instr(ip)) && !i->marked)
    ip= i->opt_mark(this);
}

1187
// ------------------------------------------------------------------
1188 1189 1190 1191

//
// sp_instr_stmt
//
1192 1193 1194 1195 1196 1197
sp_instr_stmt::~sp_instr_stmt()
{
  if (m_lex)
    delete m_lex;
}

1198
int
1199
sp_instr_stmt::execute(THD *thd, uint *nextp)
1200
{
1201 1202
  char *query;
  uint32 query_length;
1203
  DBUG_ENTER("sp_instr_stmt::execute");
1204
  DBUG_PRINT("info", ("command: %d", m_lex->sql_command));
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
  int res;

  query= thd->query;
  query_length= thd->query_length;
  if (!(res= alloc_query(thd, m_query.str, m_query.length+1)))
  {
    if (query_cache_send_result_to_client(thd,
					  thd->query, thd->query_length) <= 0)
    {
      res= exec_stmt(thd, m_lex);
      query_cache_end_of_result(thd);
    }
    thd->query= query;
    thd->query_length= query_length;
  }
1220 1221 1222 1223
  *nextp = m_ip+1;
  DBUG_RETURN(res);
}

1224 1225 1226 1227 1228
void
sp_instr_stmt::print(String *str)
{
  str->reserve(12);
  str->append("stmt ");
1229
  str->qs_append((uint)m_lex->sql_command);
1230 1231 1232
}


1233 1234 1235
int
sp_instr_stmt::exec_stmt(THD *thd, LEX *lex)
{
1236
  LEX *olex;			// The other lex
1237
  int res;
1238

1239
  olex= thd->lex;		// Save the other lex
1240
  thd->lex= lex;		// Use my own lex
1241 1242
  thd->lex->thd = thd;		// QQ Not reentrant!
  thd->lex->unit.thd= thd;	// QQ Not reentrant
1243
  thd->free_list= NULL;
1244 1245

  VOID(pthread_mutex_lock(&LOCK_thread_count));
1246
  thd->query_id= next_query_id();
1247
  VOID(pthread_mutex_unlock(&LOCK_thread_count));
1248

1249
  reset_stmt_for_execute(thd, lex);
1250

1251
  res= mysql_execute_command(thd);
1252

1253
  lex->unit.cleanup();
unknown's avatar
unknown committed
1254
  thd->rollback_item_tree_changes();
1255 1256 1257 1258 1259
  if (thd->lock || thd->open_tables || thd->derived_tables)
  {
    thd->proc_info="closing tables";
    close_thread_tables(thd);			/* Free tables */
  }
1260

1261
  thd->lex= olex;		// Restore the other lex
1262

1263
  return res;
1264 1265 1266 1267 1268 1269
}

//
// sp_instr_set
//
int
1270
sp_instr_set::execute(THD *thd, uint *nextp)
1271
{
1272 1273
  DBUG_ENTER("sp_instr_set::execute");
  DBUG_PRINT("info", ("offset: %u", m_offset));
1274 1275
  Item *it;
  int res;
1276

1277 1278 1279
  if (tables &&
      ((res= check_table_access(thd, SELECT_ACL, tables, 0)) ||
       (res= open_and_lock_tables(thd, tables))))
1280
    DBUG_RETURN(res);
1281 1282 1283 1284 1285 1286 1287 1288 1289

  it= sp_eval_func_item(thd, m_value, m_type);
  if (! it)
    res= -1;
  else
  {
    res= 0;
    thd->spcont->set_item(m_offset, it);
  }
1290
  *nextp = m_ip+1;
unknown's avatar
unknown committed
1291
  if (tables && (thd->lock || thd->open_tables || thd->derived_tables))
1292 1293
    close_thread_tables(thd);
  DBUG_RETURN(res);
1294 1295
}

1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
void
sp_instr_set::print(String *str)
{
  str->reserve(12);
  str->append("set ");
  str->qs_append(m_offset);
  str->append(' ');
  m_value->print(str);
}

1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
//
// sp_instr_set_user_var
//
int
sp_instr_set_user_var::execute(THD *thd, uint *nextp)
{
  int res= 0;

  DBUG_ENTER("sp_instr_set_user_var::execute");
  /*
    It is ok to pass 0 as 3rd argument to fix_fields() since
    Item_func_set_user_var::fix_fields() won't use it.
    QQ: Still unsure what should we return in case of error 1 or -1 ?
  */
  if (!m_set_var_item.fixed && m_set_var_item.fix_fields(thd, 0, 0) ||
      m_set_var_item.check() || m_set_var_item.update())
    res= -1;
  *nextp= m_ip + 1;
  DBUG_RETURN(res);
}

void
sp_instr_set_user_var::print(String *str)
{
  m_set_var_item.print_as_stmt(str);
}

//
// sp_instr_set_trigger_field
//
int
sp_instr_set_trigger_field::execute(THD *thd, uint *nextp)
{
  int res= 0;

  DBUG_ENTER("sp_instr_set_trigger_field::execute");
  /* QQ: Still unsure what should we return in case of error 1 or -1 ? */
  if (!value->fixed && value->fix_fields(thd, 0, &value) ||
      trigger_field.fix_fields(thd, 0, 0) ||
      (value->save_in_field(trigger_field.field, 0) < 0))
    res= -1;
  *nextp= m_ip + 1;
  DBUG_RETURN(res);
}

void
sp_instr_set_trigger_field::print(String *str)
{
  str->append("set ", 4);
  trigger_field.print(str);
  str->append(":=", 2);
  value->print(str);
}

1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
//
// sp_instr_jump
//
int
sp_instr_jump::execute(THD *thd, uint *nextp)
{
  DBUG_ENTER("sp_instr_jump::execute");
  DBUG_PRINT("info", ("destination: %u", m_dest));

  *nextp= m_dest;
  DBUG_RETURN(0);
}

1373 1374 1375 1376 1377 1378 1379 1380
void
sp_instr_jump::print(String *str)
{
  str->reserve(12);
  str->append("jump ");
  str->qs_append(m_dest);
}

1381 1382 1383
uint
sp_instr_jump::opt_mark(sp_head *sp)
{
1384
  m_dest= opt_shortcut_jump(sp, this);
1385 1386
  if (m_dest != m_ip+1)		/* Jumping to following instruction? */
    marked= 1;
1387 1388 1389 1390 1391
  m_optdest= sp->get_instr(m_dest);
  return m_dest;
}

uint
1392
sp_instr_jump::opt_shortcut_jump(sp_head *sp, sp_instr *start)
1393 1394 1395 1396 1397 1398
{
  uint dest= m_dest;
  sp_instr *i;

  while ((i= sp->get_instr(dest)))
  {
1399
    uint ndest;
1400

1401 1402 1403
    if (start == i)
      break;
    ndest= i->opt_shortcut_jump(sp, start);
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
    if (ndest == dest)
      break;
    dest= ndest;
  }
  return dest;
}

void
sp_instr_jump::opt_move(uint dst, List<sp_instr> *bp)
{
  if (m_dest > m_ip)
    bp->push_back(this);	// Forward
  else if (m_optdest)
    m_dest= m_optdest->m_ip;	// Backward
  m_ip= dst;
}

1421 1422 1423 1424 1425 1426
//
// sp_instr_jump_if
//
int
sp_instr_jump_if::execute(THD *thd, uint *nextp)
{
1427 1428
  DBUG_ENTER("sp_instr_jump_if::execute");
  DBUG_PRINT("info", ("destination: %u", m_dest));
1429 1430
  Item *it;
  int res;
1431

1432 1433 1434
  if (tables &&
      ((res= check_table_access(thd, SELECT_ACL, tables, 0)) ||
       (res= open_and_lock_tables(thd, tables))))
1435
    DBUG_RETURN(res);
1436 1437 1438 1439

  it= sp_eval_func_item(thd, m_expr, MYSQL_TYPE_TINY);
  if (!it)
    res= -1;
1440
  else
1441 1442 1443 1444 1445 1446 1447
  {
    res= 0;
    if (it->val_int())
      *nextp = m_dest;
    else
      *nextp = m_ip+1;
  }
unknown's avatar
unknown committed
1448
  if (tables && (thd->lock || thd->open_tables || thd->derived_tables))
1449 1450
    close_thread_tables(thd);
  DBUG_RETURN(res);
1451 1452
}

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
void
sp_instr_jump_if::print(String *str)
{
  str->reserve(12);
  str->append("jump_if ");
  str->qs_append(m_dest);
  str->append(' ');
  m_expr->print(str);
}

1463 1464 1465 1466 1467 1468 1469 1470
uint
sp_instr_jump_if::opt_mark(sp_head *sp)
{
  sp_instr *i;

  marked= 1;
  if ((i= sp->get_instr(m_dest)))
  {
1471
    m_dest= i->opt_shortcut_jump(sp, this);
1472 1473 1474 1475 1476 1477
    m_optdest= sp->get_instr(m_dest);
  }
  sp->opt_mark(m_dest);
  return m_ip+1;
}

1478 1479 1480 1481 1482 1483
//
// sp_instr_jump_if_not
//
int
sp_instr_jump_if_not::execute(THD *thd, uint *nextp)
{
1484 1485
  DBUG_ENTER("sp_instr_jump_if_not::execute");
  DBUG_PRINT("info", ("destination: %u", m_dest));
1486 1487
  Item *it;
  int res;
1488

1489 1490 1491
  if (tables &&
      ((res= check_table_access(thd, SELECT_ACL, tables, 0)) ||
       (res= open_and_lock_tables(thd, tables))))
1492
    DBUG_RETURN(res);
1493 1494 1495 1496

  it= sp_eval_func_item(thd, m_expr, MYSQL_TYPE_TINY);
  if (! it)
    res= -1;
1497
  else
1498 1499 1500 1501 1502 1503 1504
  {
    res= 0;
    if (! it->val_int())
      *nextp = m_dest;
    else
      *nextp = m_ip+1;
  }
unknown's avatar
unknown committed
1505
  if (tables && (thd->lock || thd->open_tables || thd->derived_tables))
1506 1507
    close_thread_tables(thd);
  DBUG_RETURN(res);
1508
}
1509

1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
void
sp_instr_jump_if_not::print(String *str)
{
  str->reserve(16);
  str->append("jump_if_not ");
  str->qs_append(m_dest);
  str->append(' ');
  m_expr->print(str);
}

1520 1521 1522 1523 1524 1525 1526 1527
uint
sp_instr_jump_if_not::opt_mark(sp_head *sp)
{
  sp_instr *i;

  marked= 1;
  if ((i= sp->get_instr(m_dest)))
  {
1528
    m_dest= i->opt_shortcut_jump(sp, this);
1529 1530 1531 1532 1533 1534
    m_optdest= sp->get_instr(m_dest);
  }
  sp->opt_mark(m_dest);
  return m_ip+1;
}

1535
//
1536
// sp_instr_freturn
1537 1538
//
int
1539
sp_instr_freturn::execute(THD *thd, uint *nextp)
1540
{
1541
  DBUG_ENTER("sp_instr_freturn::execute");
1542 1543
  Item *it;
  int res;
1544

1545 1546 1547
  if (tables &&
      ((res= check_table_access(thd, SELECT_ACL, tables, 0)) ||
       (res= open_and_lock_tables(thd, tables))))
1548
    DBUG_RETURN(res);
1549 1550 1551 1552 1553 1554 1555 1556 1557

  it= sp_eval_func_item(thd, m_value, m_type);
  if (! it)
    res= -1;
  else
  {
    res= 0;
    thd->spcont->set_result(it);
  }
1558
  *nextp= UINT_MAX;
1559
  DBUG_RETURN(res);
1560
}
1561

1562 1563 1564 1565 1566
void
sp_instr_freturn::print(String *str)
{
  str->reserve(12);
  str->append("freturn ");
1567
  str->qs_append((uint)m_type);
1568 1569 1570 1571
  str->append(' ');
  m_value->print(str);
}

1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
//
// sp_instr_hpush_jump
//
int
sp_instr_hpush_jump::execute(THD *thd, uint *nextp)
{
  DBUG_ENTER("sp_instr_hpush_jump::execute");
  List_iterator_fast<sp_cond_type_t> li(m_cond);
  sp_cond_type_t *p;

  while ((p= li++))
    thd->spcont->push_handler(p, m_handler, m_type, m_frame);

  *nextp= m_dest;
  DBUG_RETURN(0);
}

1589 1590 1591 1592 1593
void
sp_instr_hpush_jump::print(String *str)
{
  str->reserve(32);
  str->append("hpush_jump ");
1594 1595
  str->qs_append(m_dest);
  str->append(" t=");
1596
  str->qs_append(m_type);
1597
  str->append(" f=");
1598
  str->qs_append(m_frame);
1599
  str->append(" h=");
1600 1601 1602
  str->qs_append(m_handler);
}

1603 1604 1605 1606 1607 1608 1609 1610
uint
sp_instr_hpush_jump::opt_mark(sp_head *sp)
{
  sp_instr *i;

  marked= 1;
  if ((i= sp->get_instr(m_dest)))
  {
1611
    m_dest= i->opt_shortcut_jump(sp, this);
1612 1613 1614 1615 1616 1617
    m_optdest= sp->get_instr(m_dest);
  }
  sp->opt_mark(m_dest);
  return m_ip+1;
}

1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629
//
// sp_instr_hpop
//
int
sp_instr_hpop::execute(THD *thd, uint *nextp)
{
  DBUG_ENTER("sp_instr_hpop::execute");
  thd->spcont->pop_handlers(m_count);
  *nextp= m_ip+1;
  DBUG_RETURN(0);
}

1630 1631 1632 1633 1634 1635 1636 1637
void
sp_instr_hpop::print(String *str)
{
  str->reserve(12);
  str->append("hpop ");
  str->qs_append(m_count);
}

1638 1639 1640 1641 1642 1643 1644
void
sp_instr_hpop::backpatch(uint dest, sp_pcontext *dst_ctx)
{
  m_count= m_ctx->diff_handlers(dst_ctx);
}


1645 1646 1647 1648 1649 1650 1651
//
// sp_instr_hreturn
//
int
sp_instr_hreturn::execute(THD *thd, uint *nextp)
{
  DBUG_ENTER("sp_instr_hreturn::execute");
1652 1653 1654 1655 1656 1657 1658 1659
  if (m_dest)
    *nextp= m_dest;
  else
  {
    thd->spcont->restore_variables(m_frame);
    *nextp= thd->spcont->pop_hstack();
  }
  thd->spcont->in_handler= FALSE;
1660 1661
  DBUG_RETURN(0);
}
1662

1663 1664 1665
void
sp_instr_hreturn::print(String *str)
{
1666
  str->reserve(16);
1667 1668
  str->append("hreturn ");
  str->qs_append(m_frame);
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
  if (m_dest)
    str->qs_append(m_dest);
}

uint
sp_instr_hreturn::opt_mark(sp_head *sp)
{
  if (m_dest)
    return sp_instr_jump::opt_mark(sp);
  else
  {
    marked= 1;
    return UINT_MAX;
  }
1683 1684
}

1685

1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703
//
// sp_instr_cpush
//
int
sp_instr_cpush::execute(THD *thd, uint *nextp)
{
  DBUG_ENTER("sp_instr_cpush::execute");
  thd->spcont->push_cursor(m_lex);
  *nextp= m_ip+1;
  DBUG_RETURN(0);
}

sp_instr_cpush::~sp_instr_cpush()
{
  if (m_lex)
    delete m_lex;
}

1704 1705 1706 1707 1708 1709
void
sp_instr_cpush::print(String *str)
{
  str->append("cpush");
}

1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
//
// sp_instr_cpop
//
int
sp_instr_cpop::execute(THD *thd, uint *nextp)
{
  DBUG_ENTER("sp_instr_cpop::execute");
  thd->spcont->pop_cursors(m_count);
  *nextp= m_ip+1;
  DBUG_RETURN(0);
}

1722 1723 1724 1725 1726 1727 1728 1729
void
sp_instr_cpop::print(String *str)
{
  str->reserve(12);
  str->append("cpop ");
  str->qs_append(m_count);
}

1730 1731 1732 1733 1734 1735
void
sp_instr_cpop::backpatch(uint dest, sp_pcontext *dst_ctx)
{
  m_count= m_ctx->diff_cursors(dst_ctx);
}

1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
//
// sp_instr_copen
//
int
sp_instr_copen::execute(THD *thd, uint *nextp)
{
  sp_cursor *c= thd->spcont->get_cursor(m_cursor);
  int res;
  DBUG_ENTER("sp_instr_copen::execute");

  if (! c)
    res= -1;
  else
  {
    LEX *lex= c->pre_open(thd);

    if (! lex)
      res= -1;
    else
      res= exec_stmt(thd, lex);
1756
    c->post_open(thd, (lex ? TRUE : FALSE));
1757 1758 1759 1760 1761 1762
  }

  *nextp= m_ip+1;
  DBUG_RETURN(res);
}

1763 1764 1765 1766 1767 1768 1769 1770
void
sp_instr_copen::print(String *str)
{
  str->reserve(12);
  str->append("copen ");
  str->qs_append(m_cursor);
}

1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788
//
// sp_instr_cclose
//
int
sp_instr_cclose::execute(THD *thd, uint *nextp)
{
  sp_cursor *c= thd->spcont->get_cursor(m_cursor);
  int res;
  DBUG_ENTER("sp_instr_cclose::execute");

  if (! c)
    res= -1;
  else
    res= c->close(thd);
  *nextp= m_ip+1;
  DBUG_RETURN(res);
}

1789 1790 1791 1792 1793 1794 1795 1796
void
sp_instr_cclose::print(String *str)
{
  str->reserve(12);
  str->append("cclose ");
  str->qs_append(m_cursor);
}

1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
//
// sp_instr_cfetch
//
int
sp_instr_cfetch::execute(THD *thd, uint *nextp)
{
  sp_cursor *c= thd->spcont->get_cursor(m_cursor);
  int res;
  DBUG_ENTER("sp_instr_cfetch::execute");

  if (! c)
    res= -1;
  else
    res= c->fetch(thd, &m_varlist);
  *nextp= m_ip+1;
  DBUG_RETURN(res);
}
1814

1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
void
sp_instr_cfetch::print(String *str)
{
  List_iterator_fast<struct sp_pvar> li(m_varlist);
  sp_pvar_t *pv;

  str->reserve(12);
  str->append("cfetch ");
  str->qs_append(m_cursor);
  while ((pv= li++))
  {
    str->reserve(8);
    str->append(' ');
    str->qs_append(pv->offset);
  }
}

//
// sp_instr_error
//
int
sp_instr_error::execute(THD *thd, uint *nextp)
{
  DBUG_ENTER("sp_instr_error::execute");

unknown's avatar
unknown committed
1840
  my_message(m_errcode, ER(m_errcode), MYF(0));
1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852
  *nextp= m_ip+1;
  DBUG_RETURN(-1);
}

void
sp_instr_error::print(String *str)
{
  str->reserve(12);
  str->append("error ");
  str->qs_append(m_errcode);
}

1853 1854
/* ------------------------------------------------------------------ */

1855 1856 1857 1858

//
// Security context swapping
//
1859

1860
#ifndef NO_EMBEDDED_ACCESS_CHECKS
1861 1862 1863
void
sp_change_security_context(THD *thd, sp_head *sp, st_sp_security_context *ctxp)
{
1864
  ctxp->changed= (sp->m_chistics->suid != SP_IS_NOT_SUID &&
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
		   (strcmp(sp->m_definer_user.str, thd->priv_user) ||
		    strcmp(sp->m_definer_host.str, thd->priv_host)));

  if (ctxp->changed)
  {
    ctxp->master_access= thd->master_access;
    ctxp->db_access= thd->db_access;
    ctxp->priv_user= thd->priv_user;
    strncpy(ctxp->priv_host, thd->priv_host, sizeof(ctxp->priv_host));
    ctxp->user= thd->user;
    ctxp->host= thd->host;
    ctxp->ip= thd->ip;

    /* Change thise just to do the acl_getroot_no_password */
    thd->user= sp->m_definer_user.str;
    thd->host= thd->ip = sp->m_definer_host.str;

    if (acl_getroot_no_password(thd))
    {			// Failed, run as invoker for now
      ctxp->changed= FALSE;
      thd->master_access= ctxp->master_access;
      thd->db_access= ctxp->db_access;
      thd->priv_user= ctxp->priv_user;
      strncpy(thd->priv_host, ctxp->priv_host, sizeof(thd->priv_host));
    }

    /* Restore these immiediately */
    thd->user= ctxp->user;
    thd->host= ctxp->host;
    thd->ip= ctxp->ip;
  }
}

void
sp_restore_security_context(THD *thd, sp_head *sp, st_sp_security_context *ctxp)
{
  if (ctxp->changed)
  {
    ctxp->changed= FALSE;
    thd->master_access= ctxp->master_access;
    thd->db_access= ctxp->db_access;
    thd->priv_user= ctxp->priv_user;
    strncpy(thd->priv_host, ctxp->priv_host, sizeof(thd->priv_host));
  }
}
1910 1911

#endif /* NO_EMBEDDED_ACCESS_CHECKS */
1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021

/*
 *  Table merge hash table
 *
 */
typedef struct st_sp_table
{
  LEX_STRING qname;
  bool temp;
  TABLE_LIST *table;
} SP_TABLE;

byte *
sp_table_key(const byte *ptr, uint *plen, my_bool first)
{
  SP_TABLE *tab= (SP_TABLE *)ptr;
  *plen= tab->qname.length;
  return (byte *)tab->qname.str;
}

/*
 *  Merge the table list into the hash table.
 *  If the optional lex is provided, it's used to check and set
 *  the flag for creation of a temporary table.
 */
bool
sp_merge_table_list(THD *thd, HASH *h, TABLE_LIST *table,
		    LEX *lex_for_tmp_check)
{
  for (; table ; table= table->next_global)
    if (!table->derived &&
	(!table->select_lex ||
	 !(table->select_lex->options & OPTION_SCHEMA_TABLE)))
    {
      char tname[64+1+64+1+64+1];	// db.table.alias\0
      uint tlen, alen;
      SP_TABLE *tab;

      tlen= table->db_length;
      memcpy(tname, table->db, tlen);
      tname[tlen++]= '.';
      memcpy(tname+tlen, table->table_name, table->table_name_length);
      tlen+= table->table_name_length;
      tname[tlen++]= '.';
      alen= strlen(table->alias);
      memcpy(tname+tlen, table->alias, alen);
      tlen+= alen;
      tname[tlen]= '\0';

      if ((tab= (SP_TABLE *)hash_search(h, (byte *)tname, tlen)))
      {
	if (tab->table->lock_type < table->lock_type)
	  tab->table= table;	// Use the table with the highest lock type
      }
      else
      {
	if (!(tab= (SP_TABLE *)thd->calloc(sizeof(SP_TABLE))))
	  return FALSE;
	tab->qname.length= tlen;
	tab->qname.str= (char *)thd->strmake(tname, tab->qname.length);
	if (!tab->qname.str)
	  return FALSE;
	if (lex_for_tmp_check &&
	    lex_for_tmp_check->sql_command == SQLCOM_CREATE_TABLE &&
	    lex_for_tmp_check->query_tables == table &&
	    lex_for_tmp_check->create_info.options & HA_LEX_CREATE_TMP_TABLE)
	  tab->temp= TRUE;
	tab->table= table;
	my_hash_insert(h, (byte *)tab);
      }
    }
  return TRUE;
}

void
sp_merge_routine_tables(THD *thd, LEX *lex)
{
  uint i;

  for (i= 0 ; i < lex->spfuns.records ; i++)
  {
    sp_head *sp;
    LEX_STRING *ls= (LEX_STRING *)hash_element(&lex->spfuns, i);
    sp_name name(*ls);

    name.m_qname= *ls;
    if ((sp= sp_cache_lookup(&thd->sp_func_cache, &name)))
      sp_merge_table_hash(&lex->sptabs, &sp->m_sptabs);
  }
  for (i= 0 ; i < lex->spprocs.records ; i++)
  {
    sp_head *sp;
    LEX_STRING *ls= (LEX_STRING *)hash_element(&lex->spprocs, i);
    sp_name name(*ls);

    name.m_qname= *ls;
    if ((sp= sp_cache_lookup(&thd->sp_proc_cache, &name)))
      sp_merge_table_hash(&lex->sptabs, &sp->m_sptabs);
  }
}

void
sp_merge_table_hash(HASH *hdst, HASH *hsrc)
{
  for (uint i=0 ; i < hsrc->records ; i++)
  {
    SP_TABLE *tabdst;
    SP_TABLE *tabsrc= (SP_TABLE *)hash_element(hsrc, i);

    if (! (tabdst= (SP_TABLE *)hash_search(hdst,
2022
					   (byte *) tabsrc->qname.str,
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150
					   tabsrc->qname.length)))
    {
      my_hash_insert(hdst, (byte *)tabsrc);
    }
    else
    {
      if (tabdst->table->lock_type < tabsrc->table->lock_type)
	tabdst->table= tabsrc->table; // Use the highest lock type
    }
  }
}

TABLE_LIST *
sp_hash_to_table_list(THD *thd, HASH *h)
{
  uint i;
  TABLE_LIST *tables= NULL;
  DBUG_ENTER("sp_hash_to_table_list");

  for (i=0 ; i < h->records ; i++)
  {
    SP_TABLE *stab= (SP_TABLE *)hash_element(h, i);
    if (stab->temp)
      continue;
    TABLE_LIST *table, *otable= stab->table;

    if (! (table= (TABLE_LIST *)thd->calloc(sizeof(TABLE_LIST))))
      return NULL;
    table->db= otable->db;
    table->db_length= otable->db_length;
    table->alias= otable->alias;
    table->table_name= otable->table_name;
    table->table_name_length= otable->table_name_length;
    table->lock_type= otable->lock_type;
    table->updating= otable->updating;
    table->force_index= otable->force_index;
    table->ignore_leaves= otable->ignore_leaves;
    table->derived= otable->derived;
    table->schema_table= otable->schema_table;
    table->select_lex= otable->select_lex;
    table->cacheable_table= otable->cacheable_table;
    table->use_index= otable->use_index;
    table->ignore_index= otable->ignore_index;
    table->option= otable->option;

    table->next_global= tables;
    tables= table;
  }
  DBUG_RETURN(tables);
}

bool
sp_open_and_lock_tables(THD *thd, TABLE_LIST *tables)
{
  DBUG_ENTER("sp_open_and_lock_tables");
  bool ret;

  thd->in_lock_tables= 1;
  thd->options|= OPTION_TABLE_LOCK;
  if (simple_open_n_lock_tables(thd, tables))
  {
    thd->options&= ~(ulong)(OPTION_TABLE_LOCK);
    ret= FALSE;
  }
  else
  {
#if 0
    // QQ What about this?
#ifdef HAVE_QUERY_CACHE
    if (thd->variables.query_cache_wlock_invalidate)
      query_cache.invalidate_locked_for_write(first_table); // QQ first_table?
#endif /* HAVE_QUERY_CACHE */
#endif
    thd->locked_tables= thd->lock;
    thd->lock= 0;
    ret= TRUE;
  }
  thd->in_lock_tables= 0;
  DBUG_RETURN(ret);
}

void
sp_unlock_tables(THD *thd)
{
  thd->lock= thd->locked_tables;
  thd->locked_tables= 0;
  close_thread_tables(thd);			// Free tables
  if (thd->options & OPTION_TABLE_LOCK)
  {
#if 0
    // QQ What about this?
    end_active_trans(thd);
#endif
    thd->options&= ~(ulong)(OPTION_TABLE_LOCK);
  }
  if (thd->global_read_lock)
    unlock_global_read_lock(thd);
}

/*
 * Simple function for adding an explicetly named (systems) table to
 * the global table list, e.g. "mysql", "proc".
 *
 */
TABLE_LIST *
sp_add_to_query_tables(THD *thd, LEX *lex,
		       const char *db, const char *name,
		       thr_lock_type locktype)
{
  TABLE_LIST *table;

  if (!(table= (TABLE_LIST *)thd->calloc(sizeof(TABLE_LIST))))
  {
    my_error(ER_OUTOFMEMORY, MYF(0), sizeof(TABLE_LIST));
    return NULL;
  }
  table->db_length= strlen(db);
  table->db= thd->strmake(db, table->db_length);
  table->table_name_length= strlen(name);
  table->table_name= thd->strmake(name, table->table_name_length);
  table->alias= thd->strdup(name);
  table->lock_type= locktype;
  table->select_lex= lex->current_select; // QQ?
  table->cacheable_table= 1;
  
  lex->add_to_query_tables(table);
  return table;
}