sql_prepare.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:57k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 1995-2002 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */
  13. /**********************************************************************
  14. This file contains the implementation of prepare and executes. 
  15. Prepare:
  16.   - Server gets the query from client with command 'COM_PREPARE'; 
  17.     in the following format:
  18.     [COM_PREPARE:1] [query]
  19.   - Parse the query and recognize any parameter markers '?' and 
  20.     store its information list in lex->param_list
  21.   - Allocate a new statement for this prepare; and keep this in 
  22.     'thd->prepared_statements' pool.
  23.   - Without executing the query, return back to client the total 
  24.     number of parameters along with result-set metadata information
  25.     (if any) in the following format:
  26.     [STMT_ID:4]
  27.     [Column_count:2]
  28.     [Param_count:2]
  29.     [Columns meta info] (if Column_count > 0)
  30.     [Params meta info]  (if Param_count > 0 ) (TODO : 4.1.1)
  31.      
  32. Prepare-execute:
  33.   - Server gets the command 'COM_EXECUTE' to execute the 
  34.     previously prepared query. If there is any param markers; then client
  35.     will send the data in the following format:
  36.     [COM_EXECUTE:1]
  37.     [STMT_ID:4]
  38.     [NULL_BITS:(param_count+7)/8)]
  39.     [TYPES_SUPPLIED_BY_CLIENT(0/1):1]
  40.     [[length]data]
  41.     [[length]data] .. [[length]data]. 
  42.     (Note: Except for string/binary types; all other types will not be 
  43.     supplied with length field)
  44.   - Replace the param items with this new data. If it is a first execute 
  45.     or types altered by client; then setup the conversion routines.
  46.   - Execute the query without re-parsing and send back the results 
  47.     to client
  48. Long data handling:
  49.   - Server gets the long data in pieces with command type 'COM_LONG_DATA'.
  50.   - The packet recieved will have the format as:
  51.     [COM_LONG_DATA:1][STMT_ID:4][parameter_number:2][data]
  52.   - data from the packet is appended to long data value buffer for this
  53.     placeholder.
  54.   - It's up to the client to check for read data ended. The server doesn't
  55.     care; and also server doesn't notify to the client that it got the 
  56.     data or not; if there is any error; then during execute; the error 
  57.     will be returned
  58. ***********************************************************************/
  59. #include "mysql_priv.h"
  60. #include "sql_select.h" // for JOIN
  61. #include <m_ctype.h>  // for isspace()
  62. #ifdef EMBEDDED_LIBRARY
  63. /* include MYSQL_BIND headers */
  64. #include <mysql.h>
  65. #endif
  66. /******************************************************************************
  67.   Prepared_statement: statement which can contain placeholders
  68. ******************************************************************************/
  69. class Prepared_statement: public Statement
  70. {
  71. public:
  72.   THD *thd;
  73.   Item_param **param_array;
  74.   uint param_count;
  75.   uint last_errno;
  76.   char last_error[MYSQL_ERRMSG_SIZE];
  77. #ifndef EMBEDDED_LIBRARY
  78.   bool (*set_params)(Prepared_statement *st, uchar *data, uchar *data_end,
  79.                      uchar *read_pos, String *expanded_query);
  80. #else
  81.   bool (*set_params_data)(Prepared_statement *st, String *expanded_query);
  82. #endif
  83.   bool (*set_params_from_vars)(Prepared_statement *stmt, 
  84.                                List<LEX_STRING>& varnames,
  85.                                String *expanded_query);
  86. public:
  87.   Prepared_statement(THD *thd_arg);
  88.   virtual ~Prepared_statement();
  89.   void setup_set_params();
  90.   virtual Item_arena::Type type() const;
  91. };
  92. static void execute_stmt(THD *thd, Prepared_statement *stmt,
  93.                          String *expanded_query, bool set_context);
  94. /******************************************************************************
  95.   Implementation
  96. ******************************************************************************/
  97. inline bool is_param_null(const uchar *pos, ulong param_no)
  98. {
  99.   return pos[param_no/8] & (1 << (param_no & 7));
  100. }
  101. enum { STMT_QUERY_LOG_LENGTH= 8192 };
  102. enum enum_send_error { DONT_SEND_ERROR= 0, SEND_ERROR };
  103. /*
  104.   Seek prepared statement in statement map by id: returns zero if statement
  105.   was not found, pointer otherwise.
  106. */
  107. static Prepared_statement *
  108. find_prepared_statement(THD *thd, ulong id, const char *where,
  109.                         enum enum_send_error se)
  110. {
  111.   Statement *stmt= thd->stmt_map.find(id);
  112.   if (stmt == 0 || stmt->type() != Item_arena::PREPARED_STATEMENT)
  113.   {
  114.     char llbuf[22];
  115.     my_error(ER_UNKNOWN_STMT_HANDLER, MYF(0), 22, llstr(id, llbuf), where);
  116.     if (se == SEND_ERROR)
  117.       send_error(thd);
  118.     return 0;
  119.   }
  120.   return (Prepared_statement *) stmt;
  121. }
  122. /*
  123.   Send prepared stmt info to client after prepare
  124. */
  125. #ifndef EMBEDDED_LIBRARY
  126. static bool send_prep_stmt(Prepared_statement *stmt, uint columns)
  127. {
  128.   NET *net= &stmt->thd->net;
  129.   char buff[9];
  130.   DBUG_ENTER("send_prep_stmt");
  131.   buff[0]= 0;                                   /* OK packet indicator */
  132.   int4store(buff+1, stmt->id);
  133.   int2store(buff+5, columns);
  134.   int2store(buff+7, stmt->param_count);
  135.   /*
  136.     Send types and names of placeholders to the client
  137.     XXX: fix this nasty upcast from List<Item_param> to List<Item>
  138.   */
  139.   DBUG_RETURN(my_net_write(net, buff, sizeof(buff)) || 
  140.               (stmt->param_count &&
  141.                stmt->thd->protocol_simple.send_fields((List<Item> *)
  142.                                                       &stmt->lex->param_list,
  143.                                                       0)));
  144. }
  145. #else
  146. static bool send_prep_stmt(Prepared_statement *stmt,
  147.                            uint columns __attribute__((unused)))
  148. {
  149.   THD *thd= stmt->thd;
  150.   thd->client_stmt_id= stmt->id;
  151.   thd->client_param_count= stmt->param_count;
  152.   thd->net.last_errno= 0;
  153.   return 0;
  154. }
  155. #endif /*!EMBEDDED_LIBRARY*/
  156. /*
  157.   Read the length of the parameter data and return back to
  158.   caller by positing the pointer to param data.
  159. */
  160. #ifndef EMBEDDED_LIBRARY
  161. static ulong get_param_length(uchar **packet, ulong len)
  162. {
  163.   reg1 uchar *pos= *packet;
  164.   if (len < 1)
  165.     return 0;
  166.   if (*pos < 251)
  167.   {
  168.     (*packet)++;
  169.     return (ulong) *pos;
  170.   }
  171.   if (len < 3)
  172.     return 0;
  173.   if (*pos == 252)
  174.   {
  175.     (*packet)+=3;
  176.     return (ulong) uint2korr(pos+1);
  177.   }
  178.   if (len < 4)
  179.     return 0;
  180.   if (*pos == 253)
  181.   {
  182.     (*packet)+=4;
  183.     return (ulong) uint3korr(pos+1);
  184.   }
  185.   if (len < 5)
  186.     return 0;
  187.   (*packet)+=9; // Must be 254 when here 
  188.   /*
  189.     In our client-server protocol all numbers bigger than 2^24
  190.     stored as 8 bytes with uint8korr. Here we always know that
  191.     parameter length is less than 2^4 so don't look at the second
  192.     4 bytes. But still we need to obey the protocol hence 9 in the
  193.     assignment above.
  194.   */
  195.   return (ulong) uint4korr(pos+1);
  196. }
  197. #else
  198. #define get_param_length(packet, len) len
  199. #endif /*!EMBEDDED_LIBRARY*/
  200.  /*
  201.    Data conversion routines
  202.    SYNOPSIS
  203.    set_param_xx()
  204.     param   parameter item
  205.     pos     input data buffer
  206.     len     length of data in the buffer
  207.   All these functions read the data from pos, convert it to requested type 
  208.   and assign to param; pos is advanced to predefined length.
  209.   Make a note that the NULL handling is examined at first execution
  210.   (i.e. when input types altered) and for all subsequent executions
  211.   we don't read any values for this.
  212.   RETURN VALUE
  213.     none
  214. */
  215. static void set_param_tiny(Item_param *param, uchar **pos, ulong len)
  216. {
  217. #ifndef EMBEDDED_LIBRARY
  218.   if (len < 1)
  219.     return;
  220. #endif
  221.   int8 value= (int8) **pos;
  222.   param->set_int(param->unsigned_flag ? (longlong) ((uint8) value) : 
  223.                                         (longlong) value, 4);
  224.   *pos+= 1;
  225. }
  226. static void set_param_short(Item_param *param, uchar **pos, ulong len)
  227. {
  228.   int16 value;
  229. #ifndef EMBEDDED_LIBRARY
  230.   if (len < 2)
  231.     return;
  232.   value= sint2korr(*pos);
  233. #else
  234.   shortget(value, *pos);
  235. #endif
  236.   param->set_int(param->unsigned_flag ? (longlong) ((uint16) value) :
  237.                                         (longlong) value, 6);
  238.   *pos+= 2;
  239. }
  240. static void set_param_int32(Item_param *param, uchar **pos, ulong len)
  241. {
  242.   int32 value;
  243. #ifndef EMBEDDED_LIBRARY
  244.   if (len < 4)
  245.     return;
  246.   value= sint4korr(*pos);
  247. #else
  248.   longget(value, *pos);
  249. #endif
  250.   param->set_int(param->unsigned_flag ? (longlong) ((uint32) value) :
  251.                                         (longlong) value, 11);
  252.   *pos+= 4;
  253. }
  254. static void set_param_int64(Item_param *param, uchar **pos, ulong len)
  255. {
  256.   longlong value;
  257. #ifndef EMBEDDED_LIBRARY
  258.   if (len < 8)
  259.     return;
  260.   value= (longlong) sint8korr(*pos);
  261. #else
  262.   longlongget(value, *pos);
  263. #endif
  264.   param->set_int(value, 21);
  265.   *pos+= 8;
  266. }
  267. static void set_param_float(Item_param *param, uchar **pos, ulong len)
  268. {
  269.   float data;
  270. #ifndef EMBEDDED_LIBRARY
  271.   if (len < 4)
  272.     return;
  273.   float4get(data,*pos);
  274. #else
  275.   floatget(data, *pos);
  276. #endif
  277.   param->set_double((double) data);
  278.   *pos+= 4;
  279. }
  280. static void set_param_double(Item_param *param, uchar **pos, ulong len)
  281. {
  282.   double data;
  283. #ifndef EMBEDDED_LIBRARY
  284.   if (len < 8)
  285.     return;
  286.   float8get(data,*pos);
  287. #else
  288.   doubleget(data, *pos);
  289. #endif
  290.   param->set_double((double) data);
  291.   *pos+= 8;
  292. }
  293. #ifndef EMBEDDED_LIBRARY
  294. /*
  295.   Read date/time/datetime parameter values from network (binary
  296.   protocol). See writing counterparts of these functions in
  297.   libmysql.c (store_param_{time,date,datetime}).
  298. */
  299. static void set_param_time(Item_param *param, uchar **pos, ulong len)
  300. {
  301.   MYSQL_TIME tm;
  302.   ulong length= get_param_length(pos, len);
  303.   if (length >= 8)
  304.   {
  305.     uchar *to= *pos;
  306.     uint day;
  307.     tm.neg= (bool) to[0];
  308.     day= (uint) sint4korr(to+1);
  309.     tm.hour=   (uint) to[5] + day * 24;
  310.     tm.minute= (uint) to[6];
  311.     tm.second= (uint) to[7];
  312.     tm.second_part= (length > 8) ? (ulong) sint4korr(to+8) : 0;
  313.     if (tm.hour > 838)
  314.     {
  315.       /* TODO: add warning 'Data truncated' here */
  316.       tm.hour= 838;
  317.       tm.minute= 59;
  318.       tm.second= 59;
  319.     }
  320.     tm.day= tm.year= tm.month= 0;
  321.   }
  322.   else
  323.     set_zero_time(&tm, MYSQL_TIMESTAMP_TIME);
  324.   param->set_time(&tm, MYSQL_TIMESTAMP_TIME,
  325.                   MAX_TIME_WIDTH * MY_CHARSET_BIN_MB_MAXLEN);
  326.   *pos+= length;
  327. }
  328. static void set_param_datetime(Item_param *param, uchar **pos, ulong len)
  329. {
  330.   MYSQL_TIME tm;
  331.   ulong length= get_param_length(pos, len);
  332.   if (length >= 4)
  333.   {
  334.     uchar *to= *pos;
  335.     tm.neg=    0;
  336.     tm.year=   (uint) sint2korr(to);
  337.     tm.month=  (uint) to[2];
  338.     tm.day=    (uint) to[3];
  339.     if (length > 4)
  340.     {
  341.       tm.hour=   (uint) to[4];
  342.       tm.minute= (uint) to[5];
  343.       tm.second= (uint) to[6];
  344.     }
  345.     else
  346.       tm.hour= tm.minute= tm.second= 0;
  347.     tm.second_part= (length > 7) ? (ulong) sint4korr(to+7) : 0;
  348.   }
  349.   else
  350.     set_zero_time(&tm, MYSQL_TIMESTAMP_DATETIME);
  351.   param->set_time(&tm, MYSQL_TIMESTAMP_DATETIME,
  352.                   MAX_DATETIME_WIDTH * MY_CHARSET_BIN_MB_MAXLEN);
  353.   *pos+= length;
  354. }
  355. static void set_param_date(Item_param *param, uchar **pos, ulong len)
  356. {
  357.   MYSQL_TIME tm;
  358.   ulong length= get_param_length(pos, len);
  359.   if (length >= 4)
  360.   {
  361.     uchar *to= *pos;
  362.     tm.year=  (uint) sint2korr(to);
  363.     tm.month=  (uint) to[2];
  364.     tm.day= (uint) to[3];
  365.     tm.hour= tm.minute= tm.second= 0;
  366.     tm.second_part= 0;
  367.     tm.neg= 0;
  368.   }
  369.   else
  370.     set_zero_time(&tm, MYSQL_TIMESTAMP_DATE);
  371.   param->set_time(&tm, MYSQL_TIMESTAMP_DATE,
  372.                   MAX_DATE_WIDTH * MY_CHARSET_BIN_MB_MAXLEN);
  373.   *pos+= length;
  374. }
  375. #else/*!EMBEDDED_LIBRARY*/
  376. void set_param_time(Item_param *param, uchar **pos, ulong len)
  377. {
  378.   MYSQL_TIME tm= *((MYSQL_TIME*)*pos);
  379.   tm.hour+= tm.day * 24;
  380.   tm.day= tm.year= tm.month= 0;
  381.   if (tm.hour > 838)
  382.   {
  383.     /* TODO: add warning 'Data truncated' here */
  384.     tm.hour= 838;
  385.     tm.minute= 59;
  386.     tm.second= 59;
  387.   }
  388.   param->set_time(&tm, MYSQL_TIMESTAMP_TIME,
  389.                   MAX_TIME_WIDTH * MY_CHARSET_BIN_MB_MAXLEN);
  390. }
  391. void set_param_datetime(Item_param *param, uchar **pos, ulong len)
  392. {
  393.   MYSQL_TIME *to= (MYSQL_TIME*)*pos;
  394.   param->set_time(to, MYSQL_TIMESTAMP_DATETIME,
  395.                   MAX_DATETIME_WIDTH * MY_CHARSET_BIN_MB_MAXLEN);
  396. }
  397. void set_param_date(Item_param *param, uchar **pos, ulong len)
  398. {
  399.   MYSQL_TIME *to= (MYSQL_TIME*)*pos;
  400.   param->set_time(to, MYSQL_TIMESTAMP_DATE,
  401.                   MAX_DATE_WIDTH * MY_CHARSET_BIN_MB_MAXLEN);
  402. }
  403. #endif /*!EMBEDDED_LIBRARY*/
  404. static void set_param_str(Item_param *param, uchar **pos, ulong len)
  405. {
  406.   ulong length= get_param_length(pos, len);
  407.   param->set_str((const char *)*pos, length);
  408.   *pos+= length;
  409. }
  410. #undef get_param_length 
  411. static void setup_one_conversion_function(THD *thd, Item_param *param,
  412.                                           uchar param_type)
  413. {
  414.   switch (param_type) {
  415.   case MYSQL_TYPE_TINY:
  416.     param->set_param_func= set_param_tiny;
  417.     param->item_type= Item::INT_ITEM;
  418.     param->item_result_type= INT_RESULT;
  419.     break;
  420.   case MYSQL_TYPE_SHORT:
  421.     param->set_param_func= set_param_short;
  422.     param->item_type= Item::INT_ITEM;
  423.     param->item_result_type= INT_RESULT;
  424.     break;
  425.   case MYSQL_TYPE_LONG:
  426.     param->set_param_func= set_param_int32;
  427.     param->item_type= Item::INT_ITEM;
  428.     param->item_result_type= INT_RESULT;
  429.     break;
  430.   case MYSQL_TYPE_LONGLONG:
  431.     param->set_param_func= set_param_int64;
  432.     param->item_type= Item::INT_ITEM;
  433.     param->item_result_type= INT_RESULT;
  434.     break;
  435.   case MYSQL_TYPE_FLOAT:
  436.     param->set_param_func= set_param_float;
  437.     param->item_type= Item::REAL_ITEM;
  438.     param->item_result_type= REAL_RESULT;
  439.     break;
  440.   case MYSQL_TYPE_DOUBLE:
  441.     param->set_param_func= set_param_double;
  442.     param->item_type= Item::REAL_ITEM;
  443.     param->item_result_type= REAL_RESULT;
  444.     break;
  445.   case MYSQL_TYPE_TIME:
  446.     param->set_param_func= set_param_time;
  447.     param->item_type= Item::STRING_ITEM;
  448.     param->item_result_type= STRING_RESULT;
  449.     break;
  450.   case MYSQL_TYPE_DATE:
  451.     param->set_param_func= set_param_date;
  452.     param->item_type= Item::STRING_ITEM;
  453.     param->item_result_type= STRING_RESULT;
  454.     break;
  455.   case MYSQL_TYPE_DATETIME:
  456.   case MYSQL_TYPE_TIMESTAMP:
  457.     param->set_param_func= set_param_datetime;
  458.     param->item_type= Item::STRING_ITEM;
  459.     param->item_result_type= STRING_RESULT;
  460.     break;
  461.   case MYSQL_TYPE_TINY_BLOB:
  462.   case MYSQL_TYPE_MEDIUM_BLOB:
  463.   case MYSQL_TYPE_LONG_BLOB:
  464.   case MYSQL_TYPE_BLOB:
  465.     param->set_param_func= set_param_str;
  466.     param->value.cs_info.character_set_of_placeholder= &my_charset_bin;
  467.     param->value.cs_info.character_set_client=
  468.       thd->variables.character_set_client;
  469.     param->value.cs_info.final_character_set_of_str_value= &my_charset_bin;
  470.     param->item_type= Item::STRING_ITEM;
  471.     param->item_result_type= STRING_RESULT;
  472.     break;
  473.   default:
  474.     /*
  475.       The client library ensures that we won't get any other typecodes
  476.       except typecodes above and typecodes for string types. Marking
  477.       label as 'default' lets us to handle malformed packets as well.
  478.     */
  479.     {
  480.       CHARSET_INFO *fromcs= thd->variables.character_set_client;
  481.       CHARSET_INFO *tocs= thd->variables.collation_connection;
  482.       uint32 dummy_offset;
  483.       param->value.cs_info.character_set_of_placeholder= fromcs;
  484.       param->value.cs_info.character_set_client= fromcs;
  485.       /*
  486.         Setup source and destination character sets so that they
  487.         are different only if conversion is necessary: this will
  488.         make later checks easier.
  489.       */
  490.       param->value.cs_info.final_character_set_of_str_value=
  491.         String::needs_conversion(0, fromcs, tocs, &dummy_offset) ?
  492.         tocs : fromcs;
  493.       param->set_param_func= set_param_str;
  494.       /*
  495.         Exact value of max_length is not known unless data is converted to
  496.         charset of connection, so we have to set it later.
  497.       */
  498.       param->item_type= Item::STRING_ITEM;
  499.       param->item_result_type= STRING_RESULT;
  500.     }
  501.   }
  502.   param->param_type= (enum enum_field_types) param_type;
  503. }
  504. #ifndef EMBEDDED_LIBRARY
  505. /*
  506.   Update the parameter markers by reading data from client packet 
  507.   and if binary/update log is set, generate the valid query.
  508. */
  509. static bool insert_params_withlog(Prepared_statement *stmt, uchar *null_array,
  510.                                   uchar *read_pos, uchar *data_end, 
  511.                                   String *query)
  512. {
  513.   THD  *thd= stmt->thd;
  514.   Item_param **begin= stmt->param_array;
  515.   Item_param **end= begin + stmt->param_count;
  516.   uint32 length= 0;
  517.   String str; 
  518.   const String *res;
  519.   DBUG_ENTER("insert_params_withlog"); 
  520.   if (query->copy(stmt->query, stmt->query_length, default_charset_info))
  521.     DBUG_RETURN(1);
  522.   
  523.   for (Item_param **it= begin; it < end; ++it)
  524.   {
  525.     Item_param *param= *it;
  526.     if (param->state != Item_param::LONG_DATA_VALUE)
  527.     {
  528.       if (is_param_null(null_array, it - begin))
  529.         param->set_null();
  530.       else
  531.       {
  532.         if (read_pos >= data_end)
  533.           DBUG_RETURN(1);
  534.         param->set_param_func(param, &read_pos, data_end - read_pos);
  535.       }
  536.     }
  537.     res= param->query_val_str(&str);
  538.     if (param->convert_str_value(thd))
  539.       DBUG_RETURN(1);                           /* out of memory */
  540.     if (query->replace(param->pos_in_query+length, 1, *res))
  541.       DBUG_RETURN(1);
  542.     
  543.     length+= res->length()-1;
  544.   }
  545.   DBUG_RETURN(0);
  546. }
  547. static bool insert_params(Prepared_statement *stmt, uchar *null_array,
  548.                           uchar *read_pos, uchar *data_end, 
  549.                           String *expanded_query)
  550. {
  551.   Item_param **begin= stmt->param_array;
  552.   Item_param **end= begin + stmt->param_count;
  553.   DBUG_ENTER("insert_params"); 
  554.   for (Item_param **it= begin; it < end; ++it)
  555.   {
  556.     Item_param *param= *it;
  557.     if (param->state != Item_param::LONG_DATA_VALUE)
  558.     {
  559.       if (is_param_null(null_array, it - begin))
  560.         param->set_null();
  561.       else
  562.       {
  563.         if (read_pos >= data_end)
  564.           DBUG_RETURN(1);
  565.         param->set_param_func(param, &read_pos, data_end - read_pos);
  566.       }
  567.     }
  568.     if (param->convert_str_value(stmt->thd))
  569.       DBUG_RETURN(1);                           /* out of memory */
  570.   }
  571.   DBUG_RETURN(0);
  572. }
  573. static bool setup_conversion_functions(Prepared_statement *stmt,
  574.                                        uchar **data, uchar *data_end)
  575. {
  576.   /* skip null bits */
  577.   uchar *read_pos= *data + (stmt->param_count+7) / 8;
  578.   DBUG_ENTER("setup_conversion_functions");
  579.   if (*read_pos++) //types supplied / first execute
  580.   {
  581.     /*
  582.       First execute or types altered by the client, setup the 
  583.       conversion routines for all parameters (one time)
  584.     */
  585.     Item_param **it= stmt->param_array;
  586.     Item_param **end= it + stmt->param_count;
  587.     THD *thd= stmt->thd;
  588.     for (; it < end; ++it)
  589.     {
  590.       ushort typecode;
  591.       const uint signed_bit= 1 << 15;
  592.       if (read_pos >= data_end)
  593.         DBUG_RETURN(1);
  594.       typecode= sint2korr(read_pos);
  595.       read_pos+= 2;
  596.       (**it).unsigned_flag= test(typecode & signed_bit);
  597.       setup_one_conversion_function(thd, *it, (uchar) (typecode & ~signed_bit));
  598.     }
  599.   }
  600.   *data= read_pos;
  601.   DBUG_RETURN(0);
  602. }
  603. #else
  604. static bool emb_insert_params(Prepared_statement *stmt, String *expanded_query)
  605. {
  606.   THD *thd= stmt->thd;
  607.   Item_param **it= stmt->param_array;
  608.   Item_param **end= it + stmt->param_count;
  609.   MYSQL_BIND *client_param= stmt->thd->client_params;
  610.   DBUG_ENTER("emb_insert_params");
  611.   for (; it < end; ++it, ++client_param)
  612.   {
  613.     Item_param *param= *it;
  614.     setup_one_conversion_function(thd, param, client_param->buffer_type);
  615.     if (param->state != Item_param::LONG_DATA_VALUE)
  616.     {
  617.       if (*client_param->is_null)
  618.         param->set_null();
  619.       else
  620.       {
  621.         uchar *buff= (uchar*) client_param->buffer;
  622.         param->unsigned_flag= client_param->is_unsigned;
  623.         param->set_param_func(param, &buff,
  624.                               client_param->length ? 
  625.                               *client_param->length : 
  626.                               client_param->buffer_length);
  627.       }
  628.     }
  629.     if (param->convert_str_value(thd))
  630.       DBUG_RETURN(1);                           /* out of memory */
  631.   }
  632.   DBUG_RETURN(0);
  633. }
  634. static bool emb_insert_params_withlog(Prepared_statement *stmt, String *query)
  635. {
  636.   THD *thd= stmt->thd;
  637.   Item_param **it= stmt->param_array;
  638.   Item_param **end= it + stmt->param_count;
  639.   MYSQL_BIND *client_param= thd->client_params;
  640.   String str;
  641.   const String *res;
  642.   uint32 length= 0;
  643.   DBUG_ENTER("emb_insert_params_withlog");
  644.   if (query->copy(stmt->query, stmt->query_length, default_charset_info))
  645.     DBUG_RETURN(1);
  646.   
  647.   for (; it < end; ++it, ++client_param)
  648.   {
  649.     Item_param *param= *it;
  650.     setup_one_conversion_function(thd, param, client_param->buffer_type);
  651.     if (param->state != Item_param::LONG_DATA_VALUE)
  652.     {
  653.       if (*client_param->is_null)
  654.         param->set_null();
  655.       else
  656.       {
  657.         uchar *buff= (uchar*)client_param->buffer;
  658. param->unsigned_flag= client_param->is_unsigned;
  659.         param->set_param_func(param, &buff,
  660.                               client_param->length ? 
  661.                               *client_param->length : 
  662.                               client_param->buffer_length);
  663.       }
  664.     }
  665.     res= param->query_val_str(&str);
  666.     if (param->convert_str_value(thd))
  667.       DBUG_RETURN(1);                           /* out of memory */
  668.     if (query->replace(param->pos_in_query+length, 1, *res))
  669.       DBUG_RETURN(1);
  670.     length+= res->length()-1;
  671.   }
  672.   DBUG_RETURN(0);
  673. }
  674. #endif /*!EMBEDDED_LIBRARY*/
  675. /*
  676.   Set prepared statement parameters from user variables.
  677.   SYNOPSIS
  678.     insert_params_from_vars()
  679.       stmt      Statement
  680.       varnames  List of variables. Caller must ensure that number of variables
  681.                 in the list is equal to number of statement parameters
  682.       query     Ignored
  683. */
  684. static bool insert_params_from_vars(Prepared_statement *stmt,
  685.                                     List<LEX_STRING>& varnames,
  686.                                     String *query __attribute__((unused)))
  687. {
  688.   Item_param **begin= stmt->param_array;
  689.   Item_param **end= begin + stmt->param_count;
  690.   user_var_entry *entry;
  691.   LEX_STRING *varname;
  692.   List_iterator<LEX_STRING> var_it(varnames);
  693.   DBUG_ENTER("insert_params_from_vars");
  694.   for (Item_param **it= begin; it < end; ++it)
  695.   {
  696.     Item_param *param= *it;
  697.     varname= var_it++;
  698.     entry= (user_var_entry*)hash_search(&stmt->thd->user_vars,
  699.                                         (byte*) varname->str,
  700.                                          varname->length);
  701.     if (param->set_from_user_var(stmt->thd, entry) ||
  702.         param->convert_str_value(stmt->thd))
  703.       DBUG_RETURN(1);
  704.   }
  705.   DBUG_RETURN(0);
  706. }
  707. /*
  708.   Do the same as insert_params_from_vars but also construct query text for
  709.   binary log.
  710.   SYNOPSIS
  711.     insert_params_from_vars()
  712.       stmt      Statement
  713.       varnames  List of variables. Caller must ensure that number of variables
  714.                 in the list is equal to number of statement parameters
  715.       query     The query with parameter markers replaced with their values
  716. */
  717. static bool insert_params_from_vars_with_log(Prepared_statement *stmt,
  718.                                              List<LEX_STRING>& varnames,
  719.                                              String *query)
  720. {
  721.   Item_param **begin= stmt->param_array;
  722.   Item_param **end= begin + stmt->param_count;
  723.   user_var_entry *entry;
  724.   LEX_STRING *varname;
  725.   DBUG_ENTER("insert_params_from_vars");
  726.   List_iterator<LEX_STRING> var_it(varnames);
  727.   String buf;
  728.   const String *val;
  729.   uint32 length= 0;
  730.   if (query->copy(stmt->query, stmt->query_length, default_charset_info))
  731.     DBUG_RETURN(1);
  732.   for (Item_param **it= begin; it < end; ++it)
  733.   {
  734.     Item_param *param= *it;
  735.     varname= var_it++;
  736.     if (get_var_with_binlog(stmt->thd, *varname, &entry))
  737.         DBUG_RETURN(1);
  738.     if (param->set_from_user_var(stmt->thd, entry))
  739.       DBUG_RETURN(1);
  740.     /* Insert @'escaped-varname' instead of parameter in the query */
  741.     if (entry)
  742.     {
  743.       char *begin, *ptr;
  744.       buf.length(0);
  745.       if (buf.reserve(entry->name.length*2+3))
  746.         DBUG_RETURN(1);
  747.       begin= ptr= buf.c_ptr_quick();
  748.       *ptr++= '@';
  749.       *ptr++= ''';
  750.       ptr+= escape_string_for_mysql(&my_charset_utf8_general_ci,
  751.                                     ptr, entry->name.str, entry->name.length);
  752.       *ptr++= ''';
  753.       buf.length(ptr - begin);
  754.       val= &buf;
  755.     }
  756.     else
  757.       val= &my_null_string;
  758.     if (param->convert_str_value(stmt->thd))
  759.       DBUG_RETURN(1);                           /* out of memory */
  760.     if (query->replace(param->pos_in_query+length, 1, *val))
  761.       DBUG_RETURN(1);
  762.     length+= val->length()-1;
  763.   }
  764.   DBUG_RETURN(0);
  765. }
  766. /*
  767.   Validate INSERT statement: 
  768.   SYNOPSIS
  769.     mysql_test_insert()
  770.     stmt prepared statemen handler
  771.     tables list of tables queries  
  772.   RETURN VALUE
  773.     0   ok
  774.     1   error, sent to the client
  775.    -1   error, not sent to client
  776. */
  777. static int mysql_test_insert(Prepared_statement *stmt,
  778.      TABLE_LIST *table_list,
  779.      List<Item> &fields, 
  780.      List<List_item> &values_list,
  781.      List<Item> &update_fields,
  782.      List<Item> &update_values,
  783.      enum_duplicates duplic)
  784. {
  785.   THD *thd= stmt->thd;
  786.   LEX *lex= stmt->lex;
  787.   List_iterator_fast<List_item> its(values_list);
  788.   List_item *values;
  789.   int res= -1;
  790.   TABLE_LIST *insert_table_list=
  791.     (TABLE_LIST*) lex->select_lex.table_list.first;
  792.   DBUG_ENTER("mysql_test_insert");
  793.   if ((res= insert_precheck(thd, table_list)))
  794.     DBUG_RETURN(res);
  795.   /*
  796.      open temporary memory pool for temporary data allocated by derived
  797.      tables & preparation procedure
  798.      Note that this is done without locks (should not be needed as we will not
  799.      access any data here)
  800.      If we would use locks, then we have to ensure we are not using
  801.      TL_WRITE_DELAYED as having two such locks can cause table corruption.
  802.   */
  803.   if (open_normal_and_derived_tables(thd, table_list))
  804.   {
  805.     DBUG_RETURN(-1);
  806.   }
  807.   if ((values= its++))
  808.   {
  809.     uint value_count;
  810.     ulong counter= 0;
  811.     table_list->table->insert_values=(byte *)1; // don't allocate insert_values
  812.     if ((res= mysql_prepare_insert(thd, table_list, insert_table_list,
  813.                                    insert_table_list,
  814.    table_list->table, fields, values,
  815.    update_fields, update_values, duplic)))
  816.       goto error;
  817.     value_count= values->elements;
  818.     its.rewind();
  819.     while ((values= its++))
  820.     {
  821.       counter++;
  822.       if (values->elements != value_count)
  823.       {
  824.         my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  825. ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  826. MYF(0), counter);
  827.         goto error;
  828.       }
  829.       if (setup_fields(thd, 0, insert_table_list, *values, 0, 0, 0))
  830. goto error;
  831.     }
  832.   }
  833.   res= 0;
  834. error:
  835.   lex->unit.cleanup();
  836.   table_list->table->insert_values=0;
  837.   DBUG_RETURN(res);
  838. }
  839. /*
  840.   Validate UPDATE statement
  841.   SYNOPSIS
  842.     mysql_test_update()
  843.     stmt prepared statemen handler
  844.     tables list of tables queries
  845.   RETURN VALUE
  846.     0   success
  847.     1   error, sent to client
  848.    -1   error, not sent to client
  849. */
  850. static int mysql_test_update(Prepared_statement *stmt,
  851.      TABLE_LIST *table_list)
  852. {
  853.   int res;
  854.   THD *thd= stmt->thd;
  855.   SELECT_LEX *select= &stmt->lex->select_lex;
  856.   DBUG_ENTER("mysql_test_update");
  857.   if ((res= update_precheck(thd, table_list)))
  858.     DBUG_RETURN(res);
  859.   if (open_and_lock_tables(thd, table_list))
  860.     res= -1;
  861.   else
  862.   {
  863.     TABLE_LIST *update_table_list= (TABLE_LIST *)select->table_list.first;
  864.     if (!(res= mysql_prepare_update(thd, table_list,
  865.     update_table_list,
  866.     &select->where,
  867.     select->order_list.elements,
  868.     (ORDER *) select->order_list.first)))
  869.     {
  870.       if (setup_fields(thd, 0, update_table_list,
  871.        select->item_list, 1, 0, 0) ||
  872.   setup_fields(thd, 0, update_table_list,
  873.        stmt->lex->value_list, 0, 0, 0))
  874. res= -1;
  875.     }
  876.     stmt->lex->unit.cleanup();
  877.   }
  878.   /* TODO: here we should send types of placeholders to the client. */ 
  879.   DBUG_RETURN(res);
  880. }
  881. /*
  882.   Validate DELETE statement
  883.   SYNOPSIS
  884.     mysql_test_delete()
  885.     stmt prepared statemen handler
  886.     tables list of tables queries
  887.   RETURN VALUE
  888.     0   success
  889.     1   error, sent to client
  890.    -1   error, not sent to client
  891. */
  892. static int mysql_test_delete(Prepared_statement *stmt,
  893.      TABLE_LIST *table_list)
  894. {
  895.   int res;
  896.   THD *thd= stmt->thd;
  897.   LEX *lex= stmt->lex;
  898.   DBUG_ENTER("mysql_test_delete");
  899.   if ((res= delete_precheck(thd, table_list)))
  900.     DBUG_RETURN(res);
  901.   if (open_and_lock_tables(thd, table_list))
  902.     res= -1;
  903.   else
  904.   {
  905.     res= mysql_prepare_delete(thd, table_list, &lex->select_lex.where);
  906.     lex->unit.cleanup();
  907.   }
  908.   /* TODO: here we should send types of placeholders to the client. */ 
  909.   DBUG_RETURN(res);
  910. }
  911. /*
  912.   Validate SELECT statement.
  913.   In case of success, if this query is not EXPLAIN, send column list info
  914.   back to client. 
  915.   SYNOPSIS
  916.     mysql_test_select()
  917.     stmt prepared statemen handler
  918.     tables list of tables queries
  919.   RETURN VALUE
  920.     0   success
  921.     1   error, sent to client
  922.    -1   error, not sent to client
  923. */
  924. static int mysql_test_select(Prepared_statement *stmt,
  925.      TABLE_LIST *tables, bool text_protocol)
  926. {
  927.   THD *thd= stmt->thd;
  928.   LEX *lex= stmt->lex;
  929.   SELECT_LEX_UNIT *unit= &lex->unit;
  930.   int result= 1;
  931.   DBUG_ENTER("mysql_test_select");
  932. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  933.   ulong privilege= lex->exchange ? SELECT_ACL | FILE_ACL : SELECT_ACL;
  934.   if (tables)
  935.   {
  936.     if (check_table_access(thd, privilege, tables,0))
  937.       DBUG_RETURN(1);
  938.   }
  939.   else if (check_access(thd, privilege, any_db,0,0,0))
  940.     DBUG_RETURN(1);
  941. #endif
  942.   if (!lex->result && !(lex->result= new (stmt->mem_root) select_send))
  943.   {
  944.     send_error(thd);
  945.     goto err;
  946.   }
  947.   if (open_and_lock_tables(thd, tables))
  948.   {
  949.     send_error(thd);
  950.     goto err;
  951.   }
  952.   thd->used_tables= 0;                        // Updated by setup_fields
  953.   // JOIN::prepare calls
  954.   if (unit->prepare(thd, 0, 0, ""))
  955.   {
  956.     send_error(thd);
  957.     goto err_prep;
  958.   }
  959.   if (!text_protocol)
  960.   {
  961.     if (lex->describe)
  962.     {
  963.       if (send_prep_stmt(stmt, 0) || thd->protocol->flush())
  964.         goto err_prep;
  965.     }
  966.     else
  967.     {
  968.       /* Make copy of item list, as change_columns may change it */
  969.       List<Item> fields(lex->select_lex.item_list);
  970.       /* Change columns if a procedure like analyse() */
  971.       if (unit->last_procedure &&
  972.           unit->last_procedure->change_columns(fields))
  973.         goto err_prep;
  974.       /*
  975.         We can use lex->result as it should've been
  976.         prepared in unit->prepare call above.
  977.       */
  978.       if (send_prep_stmt(stmt, lex->result->field_count(fields)) ||
  979.           lex->result->send_fields(fields, 0) ||
  980.           thd->protocol->flush())
  981.         goto err_prep;
  982.     }
  983.   }
  984.   result= 0;                                    // ok
  985. err_prep:
  986.   unit->cleanup();
  987. err:
  988.   DBUG_RETURN(result);
  989. }
  990. /*
  991.   Validate and prepare for execution DO statement expressions
  992.   SYNOPSIS
  993.     mysql_test_do_fields()
  994.     stmt prepared statemen handler
  995.     tables list of tables queries
  996.     values list of expressions
  997.   RETURN VALUE
  998.     0   success
  999.     1   error, sent to client
  1000.    -1   error, not sent to client
  1001. */
  1002. static int mysql_test_do_fields(Prepared_statement *stmt,
  1003. TABLE_LIST *tables,
  1004. List<Item> *values)
  1005. {
  1006.   DBUG_ENTER("mysql_test_do_fields");
  1007.   THD *thd= stmt->thd;
  1008.   int res= 0;
  1009.   if (tables && (res= check_table_access(thd, SELECT_ACL, tables, 0)))
  1010.     DBUG_RETURN(res);
  1011.   if (tables && (res= open_and_lock_tables(thd, tables)))
  1012.   {
  1013.     DBUG_RETURN(res);
  1014.   }
  1015.   res= setup_fields(thd, 0, 0, *values, 0, 0, 0);
  1016.   stmt->lex->unit.cleanup();
  1017.   if (res)
  1018.     DBUG_RETURN(-1);
  1019.   DBUG_RETURN(0);
  1020. }
  1021. /*
  1022.   Validate and prepare for execution SET statement expressions
  1023.   SYNOPSIS
  1024.     mysql_test_set_fields()
  1025.     stmt prepared statemen handler
  1026.     tables list of tables queries
  1027.     values list of expressions
  1028.   RETURN VALUE
  1029.     0   success
  1030.     1   error, sent to client
  1031.    -1   error, not sent to client
  1032. */
  1033. static int mysql_test_set_fields(Prepared_statement *stmt,
  1034. TABLE_LIST *tables,
  1035. List<set_var_base> *var_list)
  1036. {
  1037.   DBUG_ENTER("mysql_test_set_fields");
  1038.   List_iterator_fast<set_var_base> it(*var_list);
  1039.   THD *thd= stmt->thd;
  1040.   set_var_base *var;
  1041.   int res= 0;
  1042.   if (tables && (res= check_table_access(thd, SELECT_ACL, tables, 0)))
  1043.     DBUG_RETURN(res);
  1044.   if (tables && (res= open_and_lock_tables(thd, tables)))
  1045.     goto error;
  1046.   while ((var= it++))
  1047.   {
  1048.     if (var->light_check(thd))
  1049.     {
  1050.       stmt->lex->unit.cleanup();
  1051.       res= -1;
  1052.       goto error;
  1053.     }
  1054.   }
  1055. error:
  1056.   stmt->lex->unit.cleanup();
  1057.   DBUG_RETURN(res);
  1058. }
  1059. /*
  1060.   Check internal SELECT of the prepared command
  1061.   SYNOPSIS
  1062.     select_like_statement_test()
  1063.       stmt - prepared table handler
  1064.       tables - global list of tables
  1065.   RETURN VALUE
  1066.     0   success
  1067.     1   error, sent to client
  1068.    -1   error, not sent to client
  1069. */
  1070. static int select_like_statement_test(Prepared_statement *stmt,
  1071.       TABLE_LIST *tables)
  1072. {
  1073.   DBUG_ENTER("select_like_statement_test");
  1074.   THD *thd= stmt->thd;
  1075.   LEX *lex= stmt->lex;
  1076.   int res= 0;
  1077.   if (tables && (res= open_and_lock_tables(thd, tables)))
  1078.     goto end;
  1079.   thd->used_tables= 0;                        // Updated by setup_fields
  1080.   // JOIN::prepare calls
  1081.   if (lex->unit.prepare(thd, 0, 0, ""))
  1082.   {
  1083.     res= thd->net.report_error ? -1 : 1;
  1084.   }
  1085. end:
  1086.   lex->unit.cleanup();
  1087.   DBUG_RETURN(res);
  1088. }
  1089. /*
  1090.   Validate and prepare for execution CREATE TABLE statement
  1091.   SYNOPSIS
  1092.     mysql_test_create_table()
  1093.     stmt prepared statemen handler
  1094.     tables list of tables queries
  1095.   RETURN VALUE
  1096.     0   success
  1097.     1   error, sent to client
  1098.    -1   error, not sent to client
  1099. */
  1100. static int mysql_test_create_table(Prepared_statement *stmt,
  1101.    TABLE_LIST *tables)
  1102. {
  1103.   DBUG_ENTER("mysql_test_create_table");
  1104.   THD *thd= stmt->thd;
  1105.   LEX *lex= stmt->lex;
  1106.   SELECT_LEX *select_lex= &lex->select_lex;
  1107.   int res= 0;
  1108.   /* Skip first table, which is the table we are creating */
  1109.   TABLE_LIST *create_table, *create_table_local;
  1110.   tables= lex->unlink_first_table(tables, &create_table,
  1111.   &create_table_local);
  1112.   if (!(res= create_table_precheck(thd, tables, create_table)) &&
  1113.       select_lex->item_list.elements)
  1114.   {
  1115.     select_lex->resolve_mode= SELECT_LEX::SELECT_MODE;
  1116.     res= select_like_statement_test(stmt, tables);
  1117.     select_lex->resolve_mode= SELECT_LEX::NOMATTER_MODE;
  1118.   }
  1119.   /* put tables back for PS rexecuting */
  1120.   tables= lex->link_first_table_back(tables, create_table,
  1121.      create_table_local);
  1122.   DBUG_RETURN(res);
  1123. }
  1124. /*
  1125.   Validate and prepare for execution multi update statement
  1126.   SYNOPSIS
  1127.     mysql_test_multiupdate()
  1128.     stmt prepared statemen handler
  1129.     tables list of tables queries
  1130.   RETURN VALUE
  1131.     0   success
  1132.     1   error, sent to client
  1133.    -1   error, not sent to client
  1134. */
  1135. static int mysql_test_multiupdate(Prepared_statement *stmt,
  1136.   TABLE_LIST *tables)
  1137. {
  1138.   int res;
  1139.   if ((res= multi_update_precheck(stmt->thd, tables)))
  1140.     return res;
  1141.   return select_like_statement_test(stmt, tables);
  1142. }
  1143. /*
  1144.   Validate and prepare for execution multi delete statement
  1145.   SYNOPSIS
  1146.     mysql_test_multidelete()
  1147.     stmt prepared statemen handler
  1148.     tables list of tables queries
  1149.   RETURN VALUE
  1150.     0   success
  1151.     1   error, sent to client
  1152.    -1   error, not sent to client
  1153. */
  1154. static int mysql_test_multidelete(Prepared_statement *stmt,
  1155.   TABLE_LIST *tables)
  1156. {
  1157.   int res;
  1158.   stmt->thd->lex->current_select= &stmt->thd->lex->select_lex;
  1159.   if (add_item_to_list(stmt->thd, new Item_null()))
  1160.     return -1;
  1161.   uint fake_counter;
  1162.   if ((res= multi_delete_precheck(stmt->thd, tables, &fake_counter)))
  1163.     return res;
  1164.   return select_like_statement_test(stmt, tables);
  1165. }
  1166. /*
  1167.   Validate and prepare for execution INSERT ... SELECT statement
  1168.   SYNOPSIS
  1169.     mysql_test_insert_select()
  1170.     stmt prepared statemen handler
  1171.     tables list of tables queries
  1172.   RETURN VALUE
  1173.     0   success
  1174.     1   error, sent to client
  1175.    -1   error, not sent to client
  1176. */
  1177. static int mysql_test_insert_select(Prepared_statement *stmt,
  1178.     TABLE_LIST *tables)
  1179. {
  1180.   int res;
  1181.   LEX *lex= stmt->lex;
  1182.   if ((res= insert_precheck(stmt->thd, tables)))
  1183.     return res;
  1184.   TABLE_LIST *first_local_table=
  1185.     (TABLE_LIST *)lex->select_lex.table_list.first;
  1186.   /* Skip first table, which is the table we are inserting in */
  1187.   lex->select_lex.table_list.first= (byte*) first_local_table->next;
  1188.   /*
  1189.     insert/replace from SELECT give its SELECT_LEX for SELECT,
  1190.     and item_list belong to SELECT
  1191.   */
  1192.   lex->select_lex.resolve_mode= SELECT_LEX::SELECT_MODE;
  1193.   res= select_like_statement_test(stmt, tables);
  1194.   /* revert changes*/
  1195.   lex->select_lex.table_list.first= (byte*) first_local_table;
  1196.   lex->select_lex.resolve_mode= SELECT_LEX::INSERT_MODE;
  1197.   return res;
  1198. }
  1199. /*
  1200.   Send the prepare query results back to client
  1201.   SYNOPSIS
  1202.   send_prepare_results()
  1203.     stmt prepared statement
  1204.   RETURN VALUE
  1205.     0   success
  1206.     1   error, sent to client
  1207. */
  1208. static int send_prepare_results(Prepared_statement *stmt, bool text_protocol)
  1209. {   
  1210.   THD *thd= stmt->thd;
  1211.   LEX *lex= stmt->lex;
  1212.   SELECT_LEX *select_lex= &lex->select_lex;
  1213.   TABLE_LIST *tables=(TABLE_LIST*) select_lex->table_list.first;
  1214.   enum enum_sql_command sql_command= lex->sql_command;
  1215.   int res= 0;
  1216.   DBUG_ENTER("send_prepare_results");
  1217.   DBUG_PRINT("enter",("command: %d, param_count: %ld",
  1218.                       sql_command, stmt->param_count));
  1219.   if ((&lex->select_lex != lex->all_selects_list ||
  1220.        lex->time_zone_tables_used) &&
  1221.       lex->unit.create_total_list(thd, lex, &tables))
  1222.     DBUG_RETURN(1);
  1223.   switch (sql_command) {
  1224.   case SQLCOM_REPLACE:
  1225.   case SQLCOM_INSERT:
  1226.     res= mysql_test_insert(stmt, tables, lex->field_list,
  1227.    lex->many_values,
  1228.    select_lex->item_list, lex->value_list,
  1229.    lex->duplicates);
  1230.     break;
  1231.   case SQLCOM_UPDATE:
  1232.     res= mysql_test_update(stmt, tables);
  1233.     break;
  1234.   case SQLCOM_DELETE:
  1235.     res= mysql_test_delete(stmt, tables);
  1236.     break;
  1237.   case SQLCOM_SELECT:
  1238.     if ((res= mysql_test_select(stmt, tables, text_protocol)))
  1239.       goto error;
  1240.     /* Statement and field info has already been sent */
  1241.     DBUG_RETURN(0);
  1242.   case SQLCOM_CREATE_TABLE:
  1243.     res= mysql_test_create_table(stmt, tables);
  1244.     break;
  1245.   
  1246.   case SQLCOM_DO:
  1247.     res= mysql_test_do_fields(stmt, tables, lex->insert_list);
  1248.     break;
  1249.   case SQLCOM_SET_OPTION:
  1250.     res= mysql_test_set_fields(stmt, tables, &lex->var_list);
  1251.     break;
  1252.   case SQLCOM_DELETE_MULTI:
  1253.     res= mysql_test_multidelete(stmt, tables);
  1254.     break;
  1255.   
  1256.   case SQLCOM_UPDATE_MULTI:
  1257.     res= mysql_test_multiupdate(stmt, tables);
  1258.     break;
  1259.   case SQLCOM_INSERT_SELECT:
  1260.   case SQLCOM_REPLACE_SELECT:
  1261.     res= mysql_test_insert_select(stmt, tables);
  1262.     break;
  1263.   case SQLCOM_SHOW_DATABASES:
  1264.   case SQLCOM_SHOW_PROCESSLIST:
  1265.   case SQLCOM_SHOW_STORAGE_ENGINES:
  1266.   case SQLCOM_SHOW_PRIVILEGES:
  1267.   case SQLCOM_SHOW_COLUMN_TYPES:
  1268.   case SQLCOM_SHOW_STATUS:
  1269.   case SQLCOM_SHOW_VARIABLES:
  1270.   case SQLCOM_SHOW_LOGS:
  1271.   case SQLCOM_SHOW_TABLES:
  1272.   case SQLCOM_SHOW_OPEN_TABLES:
  1273.   case SQLCOM_SHOW_CHARSETS:
  1274.   case SQLCOM_SHOW_COLLATIONS:
  1275.   case SQLCOM_SHOW_FIELDS:
  1276.   case SQLCOM_SHOW_KEYS:
  1277.   case SQLCOM_SHOW_CREATE_DB:
  1278.   case SQLCOM_SHOW_GRANTS:
  1279.   case SQLCOM_DROP_TABLE:
  1280.   case SQLCOM_RENAME_TABLE:
  1281.     break;
  1282.   default:
  1283.     /*
  1284.       All other is not supported yet
  1285.     */
  1286.     res= -1;
  1287.     my_error(ER_UNSUPPORTED_PS, MYF(0));
  1288.     goto error;
  1289.   }
  1290.   if (res == 0)
  1291.     DBUG_RETURN(text_protocol? 0 : (send_prep_stmt(stmt, 0) ||
  1292.                                     thd->protocol->flush()));
  1293. error:
  1294.   if (res < 0)
  1295.     send_error(thd, thd->killed ? ER_SERVER_SHUTDOWN : 0);
  1296.   DBUG_RETURN(1);
  1297. }
  1298. /*
  1299.   Initialize array of parameters in statement from LEX.
  1300.   (We need to have quick access to items by number in mysql_stmt_get_longdata).
  1301.   This is to avoid using malloc/realloc in the parser.
  1302. */
  1303. static bool init_param_array(Prepared_statement *stmt)
  1304. {
  1305.   LEX *lex= stmt->lex;
  1306.   THD *thd= stmt->thd;
  1307.   if ((stmt->param_count= lex->param_list.elements))
  1308.   {
  1309.     if (stmt->param_count > (uint) UINT_MAX16)
  1310.     {
  1311.       /* Error code to be defined in 5.0 */
  1312.       send_error(thd, ER_UNKNOWN_ERROR,
  1313.                  "Prepared statement contains too many placeholders.");
  1314.       return 1;
  1315.     }
  1316.     Item_param **to;
  1317.     List_iterator<Item_param> param_iterator(lex->param_list);
  1318.     /* Use thd->mem_root as it points at statement mem_root */
  1319.     stmt->param_array= (Item_param **)
  1320.                        alloc_root(stmt->thd->mem_root,
  1321.                                   sizeof(Item_param*) * stmt->param_count);
  1322.     if (!stmt->param_array)
  1323.     {
  1324.       send_error(thd, ER_OUT_OF_RESOURCES);
  1325.       return 1;
  1326.     }
  1327.     for (to= stmt->param_array;
  1328.          to < stmt->param_array + stmt->param_count;
  1329.          ++to)
  1330.     {
  1331.       *to= param_iterator++;
  1332.     }
  1333.   }
  1334.   return 0;
  1335. }
  1336. /*
  1337.   Given a query string with parameter markers, create a Prepared Statement
  1338.   from it and send PS info back to the client.
  1339.   
  1340.   SYNOPSIS
  1341.     mysql_stmt_prepare()
  1342.       packet         query to be prepared 
  1343.       packet_length  query string length, including ignored trailing NULL or 
  1344.                      quote char.
  1345.       name           NULL or statement name. For unnamed statements binary PS
  1346.                      protocol is used, for named statements text protocol is 
  1347.                      used.
  1348.   RETURN 
  1349.     0      OK, statement prepared successfully
  1350.     other  Error
  1351.   
  1352.   NOTES
  1353.     This function parses the query and sends the total number of parameters 
  1354.     and resultset metadata information back to client (if any), without 
  1355.     executing the query i.e. without any log/disk writes. This allows the 
  1356.     queries to be re-executed without re-parsing during execute. 
  1357.     If parameter markers are found in the query, then store the information
  1358.     using Item_param along with maintaining a list in lex->param_array, so 
  1359.     that a fast and direct retrieval can be made without going through all 
  1360.     field items.
  1361.    
  1362. */
  1363. int mysql_stmt_prepare(THD *thd, char *packet, uint packet_length,
  1364.                        LEX_STRING *name)
  1365. {
  1366.   LEX *lex;
  1367.   Prepared_statement *stmt= new Prepared_statement(thd);
  1368.   int error;
  1369.   DBUG_ENTER("mysql_stmt_prepare");
  1370.   DBUG_PRINT("prep_query", ("%s", packet));
  1371.   /*
  1372.     If this is an SQLCOM_PREPARE, we also increase Com_prepare_sql.
  1373.     However, it seems handy if com_stmt_prepare is increased always,
  1374.     no matter what kind of prepare is processed.
  1375.   */
  1376.   statistic_increment(com_stmt_prepare, &LOCK_status);
  1377.   if (stmt == 0)
  1378.   {
  1379.     send_error(thd, ER_OUT_OF_RESOURCES);
  1380.     DBUG_RETURN(1);
  1381.   }
  1382.   if (name)
  1383.   {
  1384.     stmt->name.length= name->length;
  1385.     if (!(stmt->name.str= memdup_root(stmt->mem_root, (char*)name->str,
  1386.                                       name->length)))
  1387.     {
  1388.       delete stmt;
  1389.       send_error(thd, ER_OUT_OF_RESOURCES);
  1390.       DBUG_RETURN(1);
  1391.     }
  1392.   }
  1393.   if (thd->stmt_map.insert(stmt))
  1394.   {
  1395.     delete stmt;
  1396.     send_error(thd, ER_OUT_OF_RESOURCES);
  1397.     DBUG_RETURN(1);
  1398.   }
  1399.   thd->set_n_backup_statement(stmt, &thd->stmt_backup);
  1400.   thd->set_n_backup_item_arena(stmt, &thd->stmt_backup);
  1401.   if (alloc_query(thd, packet, packet_length))
  1402.   {
  1403.     thd->restore_backup_statement(stmt, &thd->stmt_backup);
  1404.     thd->restore_backup_item_arena(stmt, &thd->stmt_backup);
  1405.     /* Statement map deletes statement on erase */
  1406.     thd->stmt_map.erase(stmt);
  1407.     send_error(thd, ER_OUT_OF_RESOURCES);
  1408.     DBUG_RETURN(1);
  1409.   }
  1410.   mysql_log.write(thd, thd->command, "[%lu] %s", stmt->id, packet);
  1411.   thd->current_arena= stmt;
  1412.   mysql_init_query(thd, (uchar *) thd->query, thd->query_length);
  1413.   /* Reset warnings from previous command */
  1414.   mysql_reset_errors(thd);
  1415.   lex= thd->lex;
  1416.   lex->safe_to_cache_query= 0;
  1417.   error= yyparse((void *)thd) || thd->is_fatal_error ||
  1418.          thd->net.report_error || init_param_array(stmt);
  1419.   /*
  1420.     While doing context analysis of the query (in send_prepare_results) we
  1421.     allocate a lot of additional memory: for open tables, JOINs, derived
  1422.     tables, etc.  Let's save a snapshot of current parse tree to the
  1423.     statement and restore original THD. In cases when some tree
  1424.     transformation can be reused on execute, we set again thd->mem_root from
  1425.     stmt->mem_root (see setup_wild for one place where we do that).
  1426.   */
  1427.   thd->restore_backup_item_arena(stmt, &thd->stmt_backup);
  1428.   if (!error)
  1429.     error= send_prepare_results(stmt, test(name));
  1430.   /* restore to WAIT_PRIOR: QUERY_PRIOR is set inside alloc_query */
  1431.   if (!(specialflag & SPECIAL_NO_PRIOR))
  1432.     my_pthread_setprio(pthread_self(),WAIT_PRIOR);
  1433.   lex_end(lex);
  1434.   thd->restore_backup_statement(stmt, &thd->stmt_backup);
  1435.   cleanup_items(stmt->free_list);
  1436.   close_thread_tables(thd);
  1437.   free_items(thd->free_list);
  1438.   thd->rollback_item_tree_changes();
  1439.   thd->free_list= 0;
  1440.   thd->current_arena= thd;
  1441.   if (error)
  1442.   {
  1443.     /* Statement map deletes statement on erase */
  1444.     thd->stmt_map.erase(stmt);
  1445.     stmt= NULL;
  1446.     if (thd->net.report_error)
  1447.       send_error(thd);
  1448.     /* otherwise the error is sent inside yyparse/send_prepare_results */
  1449.   }
  1450.   else
  1451.   {
  1452.     stmt->setup_set_params();
  1453.     SELECT_LEX *sl= stmt->lex->all_selects_list;
  1454.     for (; sl; sl= sl->next_select_in_list())
  1455.     {
  1456.       /*
  1457.         Save WHERE clause pointers, because they may be changed
  1458.         during query optimisation.
  1459.       */
  1460.       sl->prep_where= sl->where;
  1461.       /*
  1462.         Switch off a temporary flag that prevents evaluation of
  1463.         subqueries in statement prepare.
  1464.       */
  1465.       sl->uncacheable&= ~UNCACHEABLE_PREPARE;
  1466.     }
  1467.     stmt->state= Item_arena::PREPARED;
  1468.   }
  1469.   DBUG_RETURN(!stmt);
  1470. }
  1471. /* Reinit statement before execution */
  1472. static void reset_stmt_for_execute(Prepared_statement *stmt)
  1473. {
  1474.   THD *thd= stmt->thd;
  1475.   LEX *lex= stmt->lex;
  1476.   SELECT_LEX *sl= lex->all_selects_list;
  1477.   for (; sl; sl= sl->next_select_in_list())
  1478.   {
  1479.     /* remove option which was put by mysql_explain_union() */
  1480.     sl->options&= ~SELECT_DESCRIBE;
  1481.     /*
  1482.       Copy WHERE clause pointers to avoid damaging they by optimisation
  1483.     */
  1484.     if (sl->prep_where)
  1485.     {
  1486.       sl->where= sl->prep_where->copy_andor_structure(thd);
  1487.       sl->where->cleanup();
  1488.     }
  1489.     DBUG_ASSERT(sl->join == 0);
  1490.     ORDER *order;
  1491.     /* Fix GROUP list */
  1492.     for (order= (ORDER *)sl->group_list.first; order; order= order->next)
  1493.       order->item= &order->item_ptr;
  1494.     /* Fix ORDER list */
  1495.     for (order= (ORDER *)sl->order_list.first; order; order= order->next)
  1496.       order->item= &order->item_ptr;
  1497.     /*
  1498.       TODO: When the new table structure is ready, then have a status bit 
  1499.       to indicate the table is altered, and re-do the setup_* 
  1500.       and open the tables back.
  1501.     */
  1502.     for (TABLE_LIST *tables= (TABLE_LIST*) sl->table_list.first;
  1503.  tables;
  1504.  tables= tables->next)
  1505.     {
  1506.       /*
  1507.         Reset old pointers to TABLEs: they are not valid since the tables
  1508.         were closed in the end of previous prepare or execute call.
  1509.       */
  1510.       tables->table= 0;
  1511.       tables->table_list= 0;
  1512.     }
  1513.     
  1514.     {
  1515.       SELECT_LEX_UNIT *unit= sl->master_unit();
  1516.       unit->unclean();
  1517.       unit->types.empty();
  1518.       /* for derived tables & PS (which can't be reset by Item_subquery) */
  1519.       unit->reinit_exec_mechanism();
  1520.     }
  1521.   }
  1522.   lex->current_select= &lex->select_lex;
  1523.   if (lex->result)
  1524.     lex->result->cleanup();
  1525. }
  1526. /* 
  1527.     Clears parameters from data left from previous execution or long data
  1528.     
  1529.   SYNOPSIS
  1530.     reset_stmt_params()
  1531.       stmt - prepared statement for which parameters should be reset
  1532. */
  1533. static void reset_stmt_params(Prepared_statement *stmt)
  1534. {
  1535.   Item_param **item= stmt->param_array;
  1536.   Item_param **end= item + stmt->param_count;
  1537.   for (;item < end ; ++item)
  1538.     (**item).reset();
  1539. }
  1540. /*
  1541.   Executes previously prepared query.
  1542.   If there is any parameters, then replace markers with the data supplied
  1543.   from client, and then execute the query.
  1544.   SYNOPSIS
  1545.     mysql_stmt_execute()
  1546.       thd            Current thread
  1547.       packet         Query string
  1548.       packet_length  Query string length, including terminator character.
  1549. */
  1550. void mysql_stmt_execute(THD *thd, char *packet, uint packet_length)
  1551. {
  1552.   ulong stmt_id= uint4korr(packet);
  1553.   /*
  1554.     Query text for binary log, or empty string if the query is not put into
  1555.     binary log.
  1556.   */
  1557.   String expanded_query;
  1558. #ifndef EMBEDDED_LIBRARY
  1559.   uchar *packet_end= (uchar *) packet + packet_length - 1;
  1560. #endif
  1561.   Prepared_statement *stmt;
  1562.   DBUG_ENTER("mysql_stmt_execute");
  1563.   packet+= 9;                               /* stmt_id + 5 bytes of flags */
  1564.   statistic_increment(com_stmt_execute, &LOCK_status);
  1565.   if (!(stmt= find_prepared_statement(thd, stmt_id, "mysql_stmt_execute",
  1566.                                       SEND_ERROR)))
  1567.     DBUG_VOID_RETURN;
  1568.   DBUG_PRINT("exec_query:", ("%s", stmt->query));
  1569.   /* Check if we got an error when sending long data */
  1570.   if (stmt->state == Item_arena::ERROR)
  1571.   {
  1572.     send_error(thd, stmt->last_errno, stmt->last_error);
  1573.     DBUG_VOID_RETURN;
  1574.   }
  1575.   DBUG_ASSERT(thd->free_list == NULL);
  1576.   mysql_reset_thd_for_next_command(thd);
  1577. #ifndef EMBEDDED_LIBRARY
  1578.   if (stmt->param_count)
  1579.   {
  1580.     uchar *null_array= (uchar *) packet;
  1581.     if (setup_conversion_functions(stmt, (uchar **) &packet, packet_end) ||
  1582.         stmt->set_params(stmt, null_array, (uchar *) packet, packet_end,
  1583.                          &expanded_query))
  1584.       goto set_params_data_err;
  1585.   }
  1586. #else
  1587.   /*
  1588.     In embedded library we re-install conversion routines each time 
  1589.     we set params, and also we don't need to parse packet. 
  1590.     So we do it in one function.
  1591.   */
  1592.   if (stmt->param_count && stmt->set_params_data(stmt, &expanded_query))
  1593.     goto set_params_data_err;
  1594. #endif
  1595.   thd->protocol= &thd->protocol_prep;           // Switch to binary protocol
  1596.   execute_stmt(thd, stmt, &expanded_query, TRUE);
  1597.   thd->protocol= &thd->protocol_simple;         // Use normal protocol
  1598.   DBUG_VOID_RETURN;
  1599. set_params_data_err:
  1600.   reset_stmt_params(stmt);
  1601.   my_error(ER_WRONG_ARGUMENTS, MYF(0), "mysql_stmt_execute");
  1602.   send_error(thd);
  1603.   DBUG_VOID_RETURN;
  1604. }
  1605. /*
  1606.   Execute prepared statement using parameter values from
  1607.   lex->prepared_stmt_params and send result to the client using text protocol.
  1608. */
  1609. void mysql_sql_stmt_execute(THD *thd, LEX_STRING *stmt_name)
  1610. {
  1611.   Prepared_statement *stmt;
  1612.   /*
  1613.     Query text for binary log, or empty string if the query is not put into
  1614.     binary log.
  1615.   */
  1616.   String expanded_query;
  1617.   DBUG_ENTER("mysql_sql_stmt_execute");
  1618.   /* See comment for statistics_increment in mysql_stmt_prepare */
  1619.   statistic_increment(com_stmt_execute, &LOCK_status);
  1620.   if (!(stmt= (Prepared_statement*)thd->stmt_map.find_by_name(stmt_name)))
  1621.   {
  1622.     my_error(ER_UNKNOWN_STMT_HANDLER, MYF(0), stmt_name->length,
  1623.              stmt_name->str, "EXECUTE");
  1624.     send_error(thd);
  1625.     DBUG_VOID_RETURN;
  1626.   }
  1627.   if (stmt->param_count != thd->lex->prepared_stmt_params.elements)
  1628.   {
  1629.     my_error(ER_WRONG_ARGUMENTS, MYF(0), "EXECUTE");
  1630.     send_error(thd);
  1631.     DBUG_VOID_RETURN;
  1632.   }
  1633.   DBUG_ASSERT(thd->free_list == NULL);
  1634.   /* Must go before setting variables, as it clears thd->user_var_events */
  1635.   mysql_reset_thd_for_next_command(thd);
  1636.   thd->set_n_backup_statement(stmt, &thd->stmt_backup);
  1637.   if (stmt->set_params_from_vars(stmt,
  1638.                                  thd->stmt_backup.lex->prepared_stmt_params,
  1639.                                  &expanded_query))
  1640.   {
  1641.     my_error(ER_WRONG_ARGUMENTS, MYF(0), "EXECUTE");
  1642.     send_error(thd);
  1643.   }
  1644.   thd->command= COM_EXECUTE; /* For nice messages in general log */
  1645.   execute_stmt(thd, stmt, &expanded_query, FALSE);
  1646.   DBUG_VOID_RETURN;
  1647. }
  1648. /*
  1649.   Execute prepared statement.
  1650.   SYNOPSIS
  1651.     execute_stmt()
  1652.       thd            Current thread
  1653.       stmt           Statement to execute
  1654.       expanded_query If binary log is enabled, query string with parameter
  1655.                      placeholders replaced with actual values. Otherwise empty
  1656.                      string.
  1657.   NOTES
  1658.   Caller must set parameter values and thd::protocol.
  1659.   thd->free_list is assumed to be garbage.
  1660. */
  1661. static void execute_stmt(THD *thd, Prepared_statement *stmt,
  1662.                          String *expanded_query, bool set_context)
  1663. {
  1664.   DBUG_ENTER("execute_stmt");
  1665.   if (set_context)
  1666.     thd->set_n_backup_statement(stmt, &thd->stmt_backup);
  1667.   reset_stmt_for_execute(stmt);
  1668.   if (expanded_query->length() &&
  1669.       alloc_query(thd, (char *)expanded_query->ptr(),
  1670.                   expanded_query->length()+1))
  1671.   {
  1672.     my_error(ER_OUTOFMEMORY, 0, expanded_query->length());
  1673.     DBUG_VOID_RETURN;
  1674.   }
  1675.   mysql_log.write(thd, thd->command, "[%lu] %s", stmt->id, thd->query);
  1676.   /*
  1677.     At first execution of prepared statement we will perform logical
  1678.     transformations of the query tree (i.e. negations elimination).
  1679.     This should be done permanently on the parse tree of this statement.
  1680.   */
  1681.   thd->current_arena= stmt;
  1682.   if (!(specialflag & SPECIAL_NO_PRIOR))
  1683.     my_pthread_setprio(pthread_self(),QUERY_PRIOR);
  1684.   mysql_execute_command(thd);
  1685.   thd->lex->unit.cleanup();
  1686.   if (!(specialflag & SPECIAL_NO_PRIOR))
  1687.     my_pthread_setprio(pthread_self(), WAIT_PRIOR);
  1688.   /*
  1689.     'start_time' is set in dispatch_command, but THD::query will
  1690.     be freed when we return from this function. So let's log the slow
  1691.     query here.
  1692.   */
  1693.   log_slow_statement(thd);
  1694.   /* Prevent from second logging in the end of dispatch_command */
  1695.   thd->enable_slow_log= FALSE;
  1696.   /* Free Items that were created during this execution of the PS. */
  1697.   free_items(thd->free_list);
  1698.   thd->free_list= 0;
  1699.   if (stmt->state == Item_arena::PREPARED)
  1700.     stmt->state= Item_arena::EXECUTED;
  1701.   thd->current_arena= thd;
  1702.   cleanup_items(stmt->free_list);
  1703.   thd->rollback_item_tree_changes();
  1704.   reset_stmt_params(stmt);
  1705.   close_thread_tables(thd);                    // to close derived tables
  1706.   thd->set_statement(&thd->stmt_backup);
  1707.   DBUG_VOID_RETURN;
  1708. }
  1709. /*
  1710.   Reset a prepared statement in case there was a recoverable error.
  1711.   SYNOPSIS
  1712.     mysql_stmt_reset()
  1713.       thd       Thread handle
  1714.       packet Packet with stmt id 
  1715.   DESCRIPTION
  1716.     This function resets statement to the state it was right after prepare.
  1717.     It can be used to:
  1718.      - clear an error happened during mysql_stmt_send_long_data
  1719.      - cancel long data stream for all placeholders without
  1720.        having to call mysql_stmt_execute.
  1721.     Sends 'OK' packet in case of success (statement was reset)
  1722.     or 'ERROR' packet (unrecoverable error/statement not found/etc).
  1723. */
  1724. void mysql_stmt_reset(THD *thd, char *packet)
  1725. {
  1726.   /* There is always space for 4 bytes in buffer */
  1727.   ulong stmt_id= uint4korr(packet);
  1728.   Prepared_statement *stmt;
  1729.   
  1730.   DBUG_ENTER("mysql_stmt_reset");
  1731.   statistic_increment(com_stmt_reset, &LOCK_status);
  1732.   if (!(stmt= find_prepared_statement(thd, stmt_id, "mysql_stmt_reset",
  1733.                                       SEND_ERROR)))
  1734.     DBUG_VOID_RETURN;
  1735.   stmt->state= Item_arena::PREPARED;
  1736.   /* 
  1737.     Clear parameters from data which could be set by 
  1738.     mysql_stmt_send_long_data() call.
  1739.   */
  1740.   reset_stmt_params(stmt);
  1741.   mysql_reset_thd_for_next_command(thd);
  1742.   send_ok(thd);
  1743.   
  1744.   DBUG_VOID_RETURN;
  1745. }
  1746. /*
  1747.   Delete a prepared statement from memory.
  1748.   Note: we don't send any reply to that command. 
  1749. */
  1750. void mysql_stmt_free(THD *thd, char *packet)
  1751. {
  1752.   /* There is always space for 4 bytes in packet buffer */
  1753.   ulong stmt_id= uint4korr(packet);
  1754.   Prepared_statement *stmt;
  1755.   DBUG_ENTER("mysql_stmt_free");
  1756.   statistic_increment(com_stmt_close, &LOCK_status);
  1757.   if (!(stmt= find_prepared_statement(thd, stmt_id, "mysql_stmt_close",
  1758.                                       DONT_SEND_ERROR)))
  1759.     DBUG_VOID_RETURN;
  1760.   /* Statement map deletes statement on erase */
  1761.   thd->stmt_map.erase(stmt);
  1762.   DBUG_VOID_RETURN;
  1763. }
  1764. /*
  1765.   Long data in pieces from client
  1766.   SYNOPSIS
  1767.     mysql_stmt_get_longdata()
  1768.     thd Thread handle
  1769.     pos String to append
  1770.     packet_length Length of string
  1771.   DESCRIPTION
  1772.     Get a part of a long data.
  1773.     To make the protocol efficient, we are not sending any return packages
  1774.     here.
  1775.     If something goes wrong, then we will send the error on 'execute'
  1776.     We assume that the client takes care of checking that all parts are sent
  1777.     to the server. (No checking that we get a 'end of column' in the server)
  1778. */
  1779. void mysql_stmt_get_longdata(THD *thd, char *packet, ulong packet_length)
  1780. {
  1781.   ulong stmt_id;
  1782.   uint param_number;
  1783.   Prepared_statement *stmt;
  1784.   Item_param *param;
  1785.   char *packet_end= packet + packet_length - 1;
  1786.   
  1787.   DBUG_ENTER("mysql_stmt_get_longdata");
  1788.   statistic_increment(com_stmt_send_long_data, &LOCK_status);
  1789. #ifndef EMBEDDED_LIBRARY
  1790.   /* Minimal size of long data packet is 6 bytes */
  1791.   if ((ulong) (packet_end - packet) < MYSQL_LONG_DATA_HEADER)
  1792.   {
  1793.     my_error(ER_WRONG_ARGUMENTS, MYF(0), "mysql_stmt_send_long_data");
  1794.     DBUG_VOID_RETURN;
  1795.   }
  1796. #endif
  1797.   stmt_id= uint4korr(packet);
  1798.   packet+= 4;
  1799.   if (!(stmt=find_prepared_statement(thd, stmt_id, "mysql_stmt_send_long_data",
  1800.                                      DONT_SEND_ERROR)))
  1801.     DBUG_VOID_RETURN;
  1802.   param_number= uint2korr(packet);
  1803.   packet+= 2;
  1804. #ifndef EMBEDDED_LIBRARY
  1805.   if (param_number >= stmt->param_count)
  1806.   {
  1807.     /* Error will be sent in execute call */
  1808.     stmt->state= Item_arena::ERROR;
  1809.     stmt->last_errno= ER_WRONG_ARGUMENTS;
  1810.     sprintf(stmt->last_error, ER(ER_WRONG_ARGUMENTS),
  1811.             "mysql_stmt_send_long_data");
  1812.     DBUG_VOID_RETURN;
  1813.   }
  1814. #endif
  1815.   param= stmt->param_array[param_number];
  1816. #ifndef EMBEDDED_LIBRARY
  1817.   if (param->set_longdata(packet, (ulong) (packet_end - packet)))
  1818. #else
  1819.   if (param->set_longdata(thd->extra_data, thd->extra_length))
  1820. #endif
  1821.   {
  1822.     stmt->state= Item_arena::ERROR;
  1823.     stmt->last_errno= ER_OUTOFMEMORY;
  1824.     sprintf(stmt->last_error, ER(ER_OUTOFMEMORY), 0);
  1825.   }
  1826.   DBUG_VOID_RETURN;
  1827. }
  1828. Prepared_statement::Prepared_statement(THD *thd_arg)
  1829.   :Statement(thd_arg),
  1830.   thd(thd_arg),
  1831.   param_array(0),
  1832.   param_count(0),
  1833.   last_errno(0)
  1834. {
  1835.   *last_error= '';
  1836. }
  1837. void Prepared_statement::setup_set_params()
  1838. {
  1839.   /* Setup binary logging */
  1840.   if (mysql_bin_log.is_open() && is_update_query(lex->sql_command) ||
  1841.       mysql_log.is_open() || mysql_slow_log.is_open())
  1842.   {
  1843.     set_params_from_vars= insert_params_from_vars_with_log;
  1844. #ifndef EMBEDDED_LIBRARY
  1845.     set_params= insert_params_withlog;
  1846. #else
  1847.     set_params_data= emb_insert_params_withlog;
  1848. #endif
  1849.   }
  1850.   else
  1851.   {
  1852.     set_params_from_vars= insert_params_from_vars;
  1853. #ifndef EMBEDDED_LIBRARY
  1854.     set_params= insert_params;
  1855. #else
  1856.     set_params_data= emb_insert_params;
  1857. #endif
  1858.   }
  1859. }
  1860. Prepared_statement::~Prepared_statement()
  1861. {
  1862.   free_items(free_list);
  1863.   delete lex->result;
  1864. }
  1865. Item_arena::Type Prepared_statement::type() const
  1866. {
  1867.   return PREPARED_STATEMENT;
  1868. }