sql_prepare.cc 21.7 KB
Newer Older
unknown's avatar
unknown committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/* Copyright (C) 1995-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
*/

/**********************************************************************
This file contains the implementation of prepare and executes. 

Prepare:

  - Server gets the query from client with command 'COM_PREPARE'
  - Parse the query and recognize any parameter markers '?' and 
    store its information list lex->param_list
  - Without executing the query, return back to client the total 
    number of parameters along with result-set metadata information
28
    (if any)
unknown's avatar
unknown committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42
     
Prepare-execute:

  - Server gets the command 'COM_EXECUTE' to execute the 
    previously prepared query.
  - If there is are any parameters, then replace the markers with the 
    data supplied by client with the following format:
    [types_specified(0/1)][type][length][data] .. [type][length]..
  - Execute the query without re-parsing and send back the results 
    to client

Long data handling:
  - Server gets the long data in pieces with command type 'COM_LONG_DATA'.
  - The packet recieved will have the format as:
43
    [COM_LONG_DATA:1][parameter_number:2][type:2][data]
unknown's avatar
unknown committed
44 45
  - Checks if the type is specified by client, and if yes reads the type, 
    and stores the data in that format.
46 47 48
  - It's up to the client to check for read data ended. The server doesn't
    care.

unknown's avatar
unknown committed
49 50 51 52 53
***********************************************************************/

#include "mysql_priv.h"
#include "sql_acl.h"
#include <assert.h> // for DEBUG_ASSERT()
54
#include <m_ctype.h>  // for isspace()
unknown's avatar
unknown committed
55 56 57 58 59 60

extern int yyparse(void);
static ulong get_param_length(uchar **packet);
static uint get_buffer_type(uchar **packet);
static bool param_is_null(uchar **packet);
static bool setup_param_fields(THD *thd,List<Item> &params);
61 62
static uchar* setup_param_field(Item_param *item_param, uchar *pos,
				uint buffer_type);
unknown's avatar
unknown committed
63 64
static void setup_longdata_field(Item_param *item_param, uchar *pos);
static bool setup_longdata(THD *thd,List<Item> &params);
65 66 67
static bool send_prepare_results(PREP_STMT *stmt);
static bool parse_prepare_query(PREP_STMT *stmt, char *packet, uint length);
static bool mysql_send_insert_fields(PREP_STMT *stmt, TABLE_LIST *table_list, 
unknown's avatar
unknown committed
68
				     List<Item> &fields,
69 70 71
				     List<List_item> &values_list,
				     thr_lock_type lock_type);
static bool mysql_test_insert_fields(PREP_STMT *stmt, TABLE_LIST *table_list, 
unknown's avatar
unknown committed
72
				     List<Item> &fields,
73 74 75
				     List<List_item> &values_list,
				     thr_lock_type lock_type);
static bool mysql_test_upd_fields(PREP_STMT *stmt, TABLE_LIST *table_list,
unknown's avatar
unknown committed
76 77
				  List<Item> &fields, List<Item> &values,
				  COND *conds,thr_lock_type lock_type);
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
static bool mysql_test_select_fields(PREP_STMT *stmt, TABLE_LIST *tables,
				     List<Item> &fields, List<Item> &values,
				     COND *conds, ORDER *order, ORDER *group,
				     Item *having,thr_lock_type lock_type);


/*
  Find prepared statement in thd

  SYNOPSIS
    find_prepared_statement()
    thd		Thread handler
    stmt_id	Statement id server specified to the client on prepare

  RETURN VALUES
    0		error.  In this case the error is sent with my_error()
    ptr 	Pointer to statement
*/

static PREP_STMT *find_prepared_statement(THD *thd, ulong stmt_id,
					  const char *when)
{
  PREP_STMT *stmt;
  DBUG_ENTER("find_prepared_statement");
  DBUG_PRINT("enter",("stmt_id: %d", stmt_id));

  if (thd->last_prepared_stmt && thd->last_prepared_stmt->stmt_id == stmt_id)
    DBUG_RETURN(thd->last_prepared_stmt);
  if ((stmt= (PREP_STMT*) tree_search(&thd->prepared_statements, &stmt_id,
				      (void*) 0)))
    DBUG_RETURN (thd->last_prepared_stmt= stmt);
  my_error(ER_UNKNOWN_STMT_HANDLER, MYF(0), stmt_id, when);
  DBUG_RETURN(0);
}

/*
  Compare two prepared statements;  Used to find a prepared statement
*/

int compare_prep_stmt(PREP_STMT *a, PREP_STMT *b, void *not_used)
{
  return (a->stmt_id < b->stmt_id) ? -1 : (a->stmt_id == b->stmt_id) ? 0 : 1;
}


/*
  Free prepared statement.

  SYNOPSIS
    standard tree_element_free function.

  DESCRIPTION
    We don't have to free the stmt itself as this was stored in the tree
    and will be freed when the node is deleted
*/

void free_prep_stmt(PREP_STMT *stmt, TREE_FREE mode, void *not_used)
{
  free_root(&stmt->mem_root, MYF(0));
  free_items(stmt->free_list);
}

/*
  Send prepared stmt info to client after prepare
*/

bool send_prep_stmt(PREP_STMT *stmt, uint columns)
{
  char buff[8];
  int4store(buff, stmt->stmt_id);
  int2store(buff+4, columns);
  int2store(buff+6, stmt->param_count);
  return my_net_write(&stmt->thd->net, buff, sizeof(buff));
}

/*
  Send information about all item parameters

  TODO: Not yet ready
*/

bool send_item_params(PREP_STMT *stmt)
{
  char buff[1];
  buff[0]=0;
  return my_net_write(&stmt->thd->net, buff, sizeof(buff));
}


unknown's avatar
unknown committed
167 168 169 170 171 172 173 174 175 176 177 178

/*
  Read the buffer type, this happens only first time        
*/

static uint get_buffer_type(uchar **packet)
{
  reg1 uchar *pos= *packet;
  (*packet)+= 2;
  return (uint) uint2korr(pos);
}

179

unknown's avatar
unknown committed
180 181
/*
  Check for NULL param data
182 183 184 185

  RETURN VALUES
    0	Value was not NULL
    1	Value was NULL
unknown's avatar
unknown committed
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 227 228 229 230 231 232 233 234 235 236 237
*/

static bool param_is_null(uchar **packet)
{
  reg1 uchar *pos= *packet;
  if (*pos == 251)
  {
    (*packet)++;
    return 1;
  }
  return 0;
}

/*
  Read the length of the parameter data and retun back to   
  caller by positing the pointer to param data              
*/

static ulong get_param_length(uchar **packet)
{
  reg1 uchar *pos= *packet;
  if (*pos < 251)
  {
    (*packet)++;
    return (ulong) *pos;
  }
  if (*pos == 252)
  {
    (*packet)+=3;
    return (ulong) uint2korr(pos+1);
  }
  if (*pos == 253)
  {
    (*packet)+=4;
    return (ulong) uint3korr(pos+1);
  }
  (*packet)+=9; // Must be 254 when here 
  return (ulong) uint4korr(pos+1);
}

/*
  Read and return the data for parameters supplied by client 
*/

static uchar* setup_param_field(Item_param *item_param, 
				uchar *pos, uint buffer_type)
{
  if (param_is_null(&pos))
  {
    item_param->set_null();
    return(pos);
  }
238
  switch (buffer_type) {    
unknown's avatar
unknown committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
  case FIELD_TYPE_TINY:
    item_param->set_int((longlong)(*pos));
    pos += 1;
    break;
  case FIELD_TYPE_SHORT:
    item_param->set_int((longlong)sint2korr(pos));
    pos += 2;
    break;
  case FIELD_TYPE_INT24:
    item_param->set_int((longlong)sint4korr(pos));
    pos += 3;
    break;
  case FIELD_TYPE_LONG:
    item_param->set_int((longlong)sint4korr(pos));
    pos += 4;
    break;
  case FIELD_TYPE_LONGLONG:
    item_param->set_int((longlong)sint8korr(pos));
    pos += 8;
    break;
  case FIELD_TYPE_FLOAT:
    float data;
    float4get(data,pos);
262
    item_param->set_double((double) data);
unknown's avatar
unknown committed
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
    pos += 4;
    break;
  case FIELD_TYPE_DOUBLE:
    double j;
    float8get(j,pos)
    item_param->set_double(j);
    pos += 8;
    break;
  default:
    {      
      ulong len=get_param_length(&pos);
      item_param->set_value((const char*)pos,len);     
      pos+=len;        
    }
  }
  return(pos);
}

/*
  Update the parameter markers by reading the data           
  from client ..                                             
*/

286
static bool setup_param_fields(THD *thd, PREP_STMT *stmt)
unknown's avatar
unknown committed
287 288
{  
  DBUG_ENTER("setup_param_fields");  
289 290
#ifdef READY_TO_BE_USED
  Item_param *item_param;
unknown's avatar
unknown committed
291
  ulong param_count=0;
292 293 294 295
  uchar *pos=(uchar*) thd->net.read_pos+1;// skip command type

 
  if (*pos++) // No types supplied, read only param data
unknown's avatar
unknown committed
296 297
  {
    while ((item_param=(Item_param *)it++) && 
298
	   (param_count++ < stmt->param_count))
unknown's avatar
unknown committed
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
    {
      if (item_param->long_data_supplied)
        continue;

      if (!(pos=setup_param_field(item_param,pos,item_param->buffer_type)))
        DBUG_RETURN(1);
    }
  }
  else // Types supplied, read and store it along with param data 
  {
    while ((item_param=(Item_param *)it++) && 
	   (param_count++ < thd->param_count))
    {
      if (item_param->long_data_supplied)
        continue;

      if (!(pos=setup_param_field(item_param,pos,
316 317
				  item_param->buffer_type=
				  (enum_field_types) get_buffer_type(&pos))))
unknown's avatar
unknown committed
318 319 320
        DBUG_RETURN(1);
    }
  }
321
#endif
unknown's avatar
unknown committed
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
  DBUG_RETURN(0);
}


/*
  Validates insert fields                                    
*/

static int check_prepare_fields(THD *thd,TABLE *table, List<Item> &fields,
				List<Item> &values, ulong counter)
{
  if (fields.elements == 0 && values.elements != 0)
  {
    if (values.elements != table->fields)
    {
      my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
		      ER(ER_WRONG_VALUE_COUNT_ON_ROW),
		      MYF(0),counter);
      return -1;
    }
  }
  else
  {           
    if (fields.elements != values.elements)
    {
      my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
		      ER(ER_WRONG_VALUE_COUNT_ON_ROW),
		      MYF(0),counter);
      return -1;
    }
    TABLE_LIST table_list;
    bzero((char*) &table_list,sizeof(table_list));
354 355 356 357
    table_list.db=  table->table_cache_key;
    table_list.real_name= table_list.alias= table->table_name;
    table_list.table= table;
    table_list.grant= table->grant;
unknown's avatar
unknown committed
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378

    thd->dupp_field=0;
    if (setup_tables(&table_list) ||
	setup_fields(thd,&table_list,fields,1,0,0))
      return -1;
    if (thd->dupp_field)
    {
      my_error(ER_FIELD_SPECIFIED_TWICE,MYF(0), thd->dupp_field->field_name);
      return -1;
    }
  }
  return 0;
}


/*
  Validate the following information for INSERT statement:                         
    - field existance           
    - fields count                          
*/

379 380
static bool mysql_test_insert_fields(PREP_STMT *stmt,
				     TABLE_LIST *table_list,
unknown's avatar
unknown committed
381 382 383 384
				     List<Item> &fields, 
				     List<List_item> &values_list,
				     thr_lock_type lock_type)                                       
{
385
  THD *thd= stmt->thd;
unknown's avatar
unknown committed
386 387 388 389 390 391 392 393 394 395 396
  TABLE *table;
  List_iterator_fast<List_item> its(values_list);
  List_item *values;
  DBUG_ENTER("mysql_test_insert_fields");

  if (!(table = open_ltable(thd,table_list,lock_type)))
    DBUG_RETURN(1);

  if ((values= its++))
  {
    uint value_count;
397
    ulong counter= 0;
unknown's avatar
unknown committed
398 399 400 401 402 403 404
    
    if (check_insert_fields(thd,table,fields,*values,1))
      DBUG_RETURN(1);

    value_count= values->elements;
    its.rewind();
   
405
    while ((values= its++))
unknown's avatar
unknown committed
406 407 408 409 410 411
    {
      counter++;
      if (values->elements != value_count)
      {
        my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
			ER(ER_WRONG_VALUE_COUNT_ON_ROW),
412
			MYF(0), counter);
unknown's avatar
unknown committed
413 414 415 416
        DBUG_RETURN(1);
      }
    }
  }
417 418
  if (send_prep_stmt(stmt, 0) || send_item_params(stmt))
    DBUG_RETURN(1);
unknown's avatar
unknown committed
419 420 421 422 423 424 425 426
  DBUG_RETURN(0);
}


/*
  Validate the following information                         
    UPDATE - set and where clause    DELETE - where clause                                             
                                                             
427 428
  And send update-set clause column list fields info 
  back to client. For DELETE, just validate where clause 
unknown's avatar
unknown committed
429 430 431
  and return no fields information back to client.
*/

432
static bool mysql_test_upd_fields(PREP_STMT *stmt, TABLE_LIST *table_list,
unknown's avatar
unknown committed
433 434 435
				  List<Item> &fields, List<Item> &values,
				  COND *conds, thr_lock_type lock_type)
{
436
  THD *thd= stmt->thd;
unknown's avatar
unknown committed
437 438 439 440 441 442 443 444 445 446 447 448 449 450
  TABLE *table;
  DBUG_ENTER("mysql_test_upd_fields");

  if (!(table = open_ltable(thd,table_list,lock_type)))
    DBUG_RETURN(1);

  if (setup_tables(table_list) || setup_fields(thd,table_list,fields,1,0,0) || 
      setup_conds(thd,table_list,&conds))      
    DBUG_RETURN(1);

  /* 
     Currently return only column list info only, and we are not
     sending any info on where clause.
  */
451
  if (send_prep_stmt(stmt, 0) || send_item_params(stmt))
unknown's avatar
unknown committed
452 453 454 455 456 457 458 459 460
    DBUG_RETURN(1);
  DBUG_RETURN(0);
}

/*
  Validate the following information:                         

    SELECT - column list 
           - where clause
461
           - order clause
unknown's avatar
unknown committed
462 463 464 465 466 467 468
           - having clause
           - group by clause
           - if no column spec i.e. '*', then setup all fields
                                                           
  And send column list fields info back to client. 
*/

469
static bool mysql_test_select_fields(PREP_STMT *stmt, TABLE_LIST *tables,
unknown's avatar
unknown committed
470 471
				     List<Item> &fields, List<Item> &values,
				     COND *conds, ORDER *order, ORDER *group,
unknown's avatar
unknown committed
472
				     Item *having, thr_lock_type lock_type)
unknown's avatar
unknown committed
473 474 475
{
  TABLE *table;
  bool hidden_group_fields;
476
  THD *thd= stmt->thd;
unknown's avatar
unknown committed
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
  List<Item>  all_fields(fields);
  DBUG_ENTER("mysql_test_select_fields");

  if (!(table = open_ltable(thd,tables,lock_type)))
    DBUG_RETURN(1);
  
  thd->used_tables=0;	// Updated by setup_fields
  if (setup_tables(tables) ||
      setup_fields(thd,tables,fields,1,&all_fields,1) ||
      setup_conds(thd,tables,&conds) ||
      setup_order(thd,tables,fields,all_fields,order) ||
      setup_group(thd,tables,fields,all_fields,group,&hidden_group_fields))
    DBUG_RETURN(1);

  if (having)
  {
    thd->where="having clause";
    thd->allow_sum_func=1;
unknown's avatar
unknown committed
495
    if (having->fix_fields(thd, tables, &having) || thd->fatal_error)
unknown's avatar
unknown committed
496 497 498 499 500 501 502 503 504 505 506
      DBUG_RETURN(1);				
    if (having->with_sum_func)
      having->split_sum_func(all_fields);
  }
  if (setup_ftfuncs(thd)) 
    DBUG_RETURN(1);

  /* 
     Currently return only column list info only, and we are not
     sending any info on where clause.
  */
507 508
  if (send_prep_stmt(stmt, fields.elements) ||
      send_fields(thd,fields,0) || send_item_params(stmt))
unknown's avatar
unknown committed
509 510 511 512
    DBUG_RETURN(1);
  DBUG_RETURN(0);  
}

513

unknown's avatar
unknown committed
514
/*
515
  Check the access privileges
unknown's avatar
unknown committed
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
*/

static bool check_prepare_access(THD *thd, TABLE_LIST *tables,
                                 uint type)
{
  if (check_access(thd,type,tables->db,&tables->grant.privilege))
    return 1; 
  if (grant_option && check_grant(thd,type,tables))
    return 1;
  return 0;
}

/*
  Send the prepare query results back to client              
*/
                     
532
static bool send_prepare_results(PREP_STMT *stmt)     
unknown's avatar
unknown committed
533
{   
534 535
  THD *thd= stmt->thd;
  LEX *lex= &thd->lex;
unknown's avatar
unknown committed
536
  enum enum_sql_command sql_command = thd->lex.sql_command;
537 538 539
  DBUG_ENTER("send_prepare_results");
  DBUG_PRINT("enter",("command: %d, param_count: %ld",
                      sql_command, lex->param_count));
unknown's avatar
unknown committed
540
  
541 542 543 544 545
  /* Setup prepared stmt */
  stmt->param_count= lex->param_count;
  stmt->free_list= thd->free_list;		// Save items used in stmt
  thd->free_list= 0;

unknown's avatar
unknown committed
546 547 548
  SELECT_LEX *select_lex = lex->select;
  TABLE_LIST *tables=(TABLE_LIST*) select_lex->table_list.first;
  
549
  switch (sql_command) {
unknown's avatar
unknown committed
550 551

  case SQLCOM_INSERT:
552
    if (mysql_test_insert_fields(stmt, tables, lex->field_list,
unknown's avatar
unknown committed
553 554 555 556 557
				 lex->many_values, lex->lock_option))
      goto abort;    
    break;

  case SQLCOM_UPDATE:
558
    if (mysql_test_upd_fields(stmt, tables, select_lex->item_list,
unknown's avatar
unknown committed
559 560 561 562 563 564
			      lex->value_list, select_lex->where,
			      lex->lock_option))
      goto abort;
    break;

  case SQLCOM_DELETE:
565
    if (mysql_test_upd_fields(stmt, tables, select_lex->item_list,
unknown's avatar
unknown committed
566 567 568 569 570 571
			      lex->value_list, select_lex->where,
			      lex->lock_option))
      goto abort;
    break;

  case SQLCOM_SELECT:
572
    if (mysql_test_select_fields(stmt, tables, select_lex->item_list,
unknown's avatar
unknown committed
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
				 lex->value_list, select_lex->where,
				 (ORDER*) select_lex->order_list.first,
				 (ORDER*) select_lex->group_list.first,
				 select_lex->having, lex->lock_option))
      goto abort;
    break;

  default:
    {
      /* 
         Rest fall through to default category, no parsing 
         for non-DML statements 
      */
    }
  }
588
  DBUG_RETURN(0);
unknown's avatar
unknown committed
589 590

abort:
591 592
  send_error(thd,thd->killed ? ER_SERVER_SHUTDOWN : 0);
  DBUG_RETURN(1);
unknown's avatar
unknown committed
593 594 595 596 597 598
}

/*
  Parse the prepare query                                    
*/

599 600
static bool parse_prepare_query(PREP_STMT *stmt,
				char *packet, uint length)
unknown's avatar
unknown committed
601
{
602 603 604
  bool error= 1;
  THD *thd= stmt->thd;
  DBUG_ENTER("parse_prepare_query");
unknown's avatar
unknown committed
605 606 607 608

  mysql_log.write(thd,COM_PREPARE,"%s",packet);       
  mysql_init_query(thd);   
  thd->prepare_command=true; 
609
  thd->safe_to_cache_query= 0;
unknown's avatar
unknown committed
610

611 612 613 614 615
  LEX *lex=lex_start(thd, (uchar*) packet, length);
  if (!yyparse() && !thd->fatal_error) 
    error= send_prepare_results(stmt);
  lex_end(lex);
  DBUG_RETURN(error);
unknown's avatar
unknown committed
616 617
}

618

unknown's avatar
unknown committed
619 620 621 622 623 624 625 626 627 628 629 630 631 632
/*
  Parse the query and send the total number of parameters 
  and resultset metadata information back to client (if any), 
  without executing the query i.e. with out any log/disk 
  writes. This will allow the queries to be re-executed 
  without re-parsing during execute.          
                                                              
  If parameter markers are found in the query, then store    
  the information using Item_param along with maintaining a  
  list in lex->param_list, so that a fast and direct         
  retrieveal can be made without going through all field     
  items.                                                     
*/

633
bool mysql_stmt_prepare(THD *thd, char *packet, uint packet_length)
unknown's avatar
unknown committed
634 635
{
  MEM_ROOT thd_root = thd->mem_root;
636 637
  PREP_STMT stmt;
  DBUG_ENTER("mysql_stmt_prepare");
unknown's avatar
unknown committed
638

639 640 641 642 643 644 645 646 647 648
  bzero((char*) &stmt, sizeof(stmt));
  stmt.thd= thd;
  stmt.stmt_id= ++thd->current_stmt_id;
  init_sql_alloc(&stmt.mem_root, 8192, 8192);

  thd->mem_root= stmt.mem_root;
  if (alloc_query(thd, packet, packet_length))
    goto err;
  if (parse_prepare_query(&stmt, thd->query, thd->query_length))
    goto err;
unknown's avatar
unknown committed
649 650 651 652

  if (!(specialflag & SPECIAL_NO_PRIOR))
    my_pthread_setprio(pthread_self(),WAIT_PRIOR);   
       
653 654 655 656 657 658 659 660 661
  stmt.mem_root= thd->mem_root;
  thd->mem_root= thd_root; // restore main mem_root
  DBUG_RETURN(0);

err:
  stmt.mem_root= thd->mem_root;
  free_prep_stmt(&stmt, free_free, (void*) 0);
  thd->mem_root = thd_root;	// restore main mem_root
  DBUG_RETURN(1);
unknown's avatar
unknown committed
662 663 664 665 666 667 668 669 670 671 672
}


/*
  Executes previously prepared query

  If there is any parameters(thd->param_count), then replace 
  markers with the data supplied from client, and then       
  execute the query                                            
*/

673
void mysql_stmt_execute(THD *thd, char *packet)
unknown's avatar
unknown committed
674
{
675 676 677
  ulong stmt_id=     uint4korr(packet);
  PREP_STMT	*stmt;
  DBUG_ENTER("mysql_stmt_execute");
unknown's avatar
unknown committed
678

679 680 681 682 683 684 685 686 687 688 689 690 691 692
  if (!(stmt=find_prepared_statement(thd, stmt_id, "execute")))
  {
    send_error(thd);
    DBUG_VOID_RETURN;
  }

  /* Check if we got an error when sending long data */
  if (stmt->error_in_prepare)
  {
    send_error(thd);
    DBUG_VOID_RETURN;
  }

  if (stmt->param_count && setup_param_fields(thd, stmt))
unknown's avatar
unknown committed
693
    DBUG_VOID_RETURN;
694 695 696

  MEM_ROOT thd_root= thd->mem_root;
  thd->mem_root = thd->con_root;
unknown's avatar
unknown committed
697 698 699
  if (!(specialflag & SPECIAL_NO_PRIOR))
    my_pthread_setprio(pthread_self(),QUERY_PRIOR);  
 
700 701
  /*
    TODO:
unknown's avatar
unknown committed
702 703 704 705
    Also, have checks on basic executions such as mysql_insert(), 
    mysql_delete(), mysql_update() and mysql_select() to not to 
    have re-check on setup_* and other things ..
  */  
706
  mysql_execute_command(thd);
unknown's avatar
unknown committed
707 708

  if (!(specialflag & SPECIAL_NO_PRIOR))
709
    my_pthread_setprio(pthread_self(), WAIT_PRIOR);
unknown's avatar
unknown committed
710
  
711
  thd->mem_root= thd_root;
unknown's avatar
unknown committed
712 713 714
  DBUG_VOID_RETURN;
}

715

unknown's avatar
unknown committed
716
/*
717 718 719 720 721 722 723 724 725 726 727
  Reset a prepared statement
  
  SYNOPSIS
    mysql_stmt_reset()
    thd		Thread handle
    packet	Packet with stmt handle

  DESCRIPTION
    This function is useful when one gets an error after calling
    mysql_stmt_getlongdata() and one wants to reset the handle
    so that one can call execute again.
unknown's avatar
unknown committed
728 729
*/

730
void mysql_stmt_reset(THD *thd, char *packet)
unknown's avatar
unknown committed
731
{
732 733 734
  ulong stmt_id= uint4korr(packet);
  PREP_STMT *stmt;
  DBUG_ENTER("mysql_stmt_reset");
unknown's avatar
unknown committed
735

736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
  if (!(stmt=find_prepared_statement(thd, stmt_id, "close")))
  {
    send_error(thd);
    DBUG_VOID_RETURN;
  }

  stmt->error_in_prepare=0;
  Item_param *item= stmt->param, *end= item + stmt->param_count;

  /* Free long data if used */
  if (stmt->long_data_used)
  {
    stmt->long_data_used= 0;
    for (; item < end ; item++)
      item->reset();
  }
  DBUG_VOID_RETURN;
}


/*
  Delete a prepared statement from memory
*/

void mysql_stmt_close(THD *thd, char *packet)
{
  ulong stmt_id= uint4korr(packet);
  PREP_STMT *stmt;
  DBUG_ENTER("mysql_stmt_close");

  if (!(stmt=find_prepared_statement(thd, stmt_id, "close")))
  {
    send_error(thd);
    DBUG_VOID_RETURN;
  }
  /* Will call free_prep_stmt() */
  tree_delete(&thd->prepared_statements, (void*) stmt, NULL);
  thd->last_prepared_stmt=0;
unknown's avatar
unknown committed
774 775 776
  DBUG_VOID_RETURN;
}

777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835

/*
  Long data in pieces from client                            

  SYNOPSIS
    mysql_stmt_get_longdata()
    thd			Thread handle
    pos			String to append
    packet_length	Length of string

  DESCRIPTION
    Get a part of a long data.
    To make the protocol efficient, we are not sending any return packages
    here.
    If something goes wrong, then we will send the error on 'execute'

    We assume that the client takes care of checking that all parts are sent
    to the server. (No checking that we get a 'end of column' in the server)
*/

void mysql_stmt_get_longdata(THD *thd, char *pos, ulong packet_length)
{
  PREP_STMT *stmt;
  DBUG_ENTER("mysql_stmt_get_longdata");

  /* The following should never happen */
  if (packet_length < 9)
  {
    my_error(ER_WRONG_ARGUMENTS, MYF(0), "get_longdata");
    DBUG_VOID_RETURN;
  }

  pos++;				// skip command type at first position
  ulong stmt_id=     uint4korr(pos);
  uint param_number= uint2korr(pos+4);
  uint param_type=   uint2korr(pos+6);
  pos+=8;				// Point to data

  if (!(stmt=find_prepared_statement(thd, stmt_id, "get_longdata")))
  {
    /*
      There is a chance that the client will never see this as
      it doesn't expect an answer from this call...
    */
    send_error(thd);
    DBUG_VOID_RETURN;
  }

  if (param_number >= stmt->param_count)
  {
    stmt->error_in_prepare=1;
    stmt->last_errno=ER_WRONG_ARGUMENTS;
    sprintf(stmt->last_error, ER(ER_WRONG_ARGUMENTS), "get_longdata");
    DBUG_VOID_RETURN;
  }
  stmt->param[param_number].set_longdata(pos, packet_length-9);
  stmt->long_data_used= 1;
  DBUG_VOID_RETURN;
}