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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* Insert of records */
  14. #include "mysql_priv.h"
  15. static int check_null_fields(THD *thd,TABLE *entry);
  16. #ifndef EMBEDDED_LIBRARY
  17. static TABLE *delayed_get_table(THD *thd,TABLE_LIST *table_list);
  18. static int write_delayed(THD *thd,TABLE *table, enum_duplicates dup, bool ignore,
  19.  char *query, uint query_length, int log_on);
  20. static void end_delayed_insert(THD *thd);
  21. extern "C" pthread_handler_decl(handle_delayed_insert,arg);
  22. static void unlink_blobs(register TABLE *table);
  23. #endif
  24. /* Define to force use of my_malloc() if the allocated memory block is big */
  25. #ifndef HAVE_ALLOCA
  26. #define my_safe_alloca(size, min_length) my_alloca(size)
  27. #define my_safe_afree(ptr, size, min_length) my_afree(ptr)
  28. #else
  29. #define my_safe_alloca(size, min_length) ((size <= min_length) ? my_alloca(size) : my_malloc(size,MYF(0)))
  30. #define my_safe_afree(ptr, size, min_length) if (size > min_length) my_free(ptr,MYF(0))
  31. #endif
  32. #define DELAYED_LOG_UPDATE 1
  33. #define DELAYED_LOG_BIN    2
  34. /*
  35.   Check if insert fields are correct.
  36.   SYNOPSIS
  37.     check_insert_fields()
  38.     thd                         The current thread.
  39.     table                       The table for insert.
  40.     fields                      The insert fields.
  41.     values                      The insert values.
  42.   NOTE
  43.     Clears TIMESTAMP_AUTO_SET_ON_INSERT from table->timestamp_field_type
  44.     or leaves it as is, depending on if timestamp should be updated or
  45.     not.
  46.   RETURN
  47.     0           OK
  48.     -1          Error
  49. */
  50. static int check_insert_fields(THD *thd, TABLE *table, List<Item> &fields,
  51.                                List<Item> &values)
  52. {
  53.   if (fields.elements == 0 && values.elements != 0)
  54.   {
  55.     if (values.elements != table->fields)
  56.     {
  57.       my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  58.       ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  59.       MYF(0), 1L);
  60.       return -1;
  61.     }
  62. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  63.     if (grant_option &&
  64. check_grant_all_columns(thd,INSERT_ACL,table))
  65.       return -1;
  66. #endif
  67.     clear_timestamp_auto_bits(table->timestamp_field_type,
  68.                               TIMESTAMP_AUTO_SET_ON_INSERT);
  69.   }
  70.   else
  71.   { // Part field list
  72.     if (fields.elements != values.elements)
  73.     {
  74.       my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  75.       ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  76.       MYF(0), 1L);
  77.       return -1;
  78.     }
  79.     TABLE_LIST table_list;
  80.     bzero((char*) &table_list,sizeof(table_list));
  81.     table_list.db=  table->table_cache_key;
  82.     table_list.real_name= table_list.alias= table->table_name;
  83.     table_list.table=table;
  84.     table_list.grant=table->grant;
  85.     thd->dupp_field=0;
  86.     if (setup_tables(&table_list) ||
  87. setup_fields(thd, 0, &table_list,fields,1,0,0))
  88.       return -1;
  89.     if (thd->dupp_field)
  90.     {
  91.       my_error(ER_FIELD_SPECIFIED_TWICE,MYF(0), thd->dupp_field->field_name);
  92.       return -1;
  93.     }
  94.     if (table->timestamp_field && // Don't set timestamp if used
  95. table->timestamp_field->query_id == thd->query_id)
  96.       clear_timestamp_auto_bits(table->timestamp_field_type,
  97.                                 TIMESTAMP_AUTO_SET_ON_INSERT);
  98.   }
  99.   // For the values we need select_priv
  100. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  101.   table->grant.want_privilege=(SELECT_ACL & ~table->grant.privilege);
  102. #endif
  103.   return 0;
  104. }
  105. /*
  106.   Check update fields for the timestamp field.
  107.   SYNOPSIS
  108.     check_update_fields()
  109.     thd                         The current thread.
  110.     insert_table_list           The insert table list.
  111.     table                       The table for update.
  112.     update_fields               The update fields.
  113.   NOTE
  114.     If the update fields include the timestamp field,
  115.     remove TIMESTAMP_AUTO_SET_ON_UPDATE from table->timestamp_field_type.
  116.   RETURN
  117.     0           OK
  118.     -1          Error
  119. */
  120. static int check_update_fields(THD *thd, TABLE *table,
  121.                                TABLE_LIST *insert_table_list,
  122.                                List<Item> &update_fields)
  123. {
  124.   ulong timestamp_query_id;
  125.   LINT_INIT(timestamp_query_id);
  126.   /*
  127.     Change the query_id for the timestamp column so that we can
  128.     check if this is modified directly.
  129.   */
  130.   if (table->timestamp_field)
  131.   {
  132.     timestamp_query_id= table->timestamp_field->query_id;
  133.     table->timestamp_field->query_id= thd->query_id-1;
  134.   }
  135.   /*
  136.     Check the fields we are going to modify. This will set the query_id
  137.     of all used fields to the threads query_id.
  138.   */
  139.   if (setup_fields(thd, 0, insert_table_list, update_fields, 1, 0, 0))
  140.     return -1;
  141.   if (table->timestamp_field)
  142.   {
  143.     /* Don't set timestamp column if this is modified. */
  144.     if (table->timestamp_field->query_id == thd->query_id)
  145.       clear_timestamp_auto_bits(table->timestamp_field_type,
  146.                                 TIMESTAMP_AUTO_SET_ON_UPDATE);
  147.     else
  148.       table->timestamp_field->query_id= timestamp_query_id;
  149.   }
  150.   return 0;
  151. }
  152. int mysql_insert(THD *thd,TABLE_LIST *table_list,
  153.                  List<Item> &fields,
  154.                  List<List_item> &values_list,
  155.                  List<Item> &update_fields,
  156.                  List<Item> &update_values,
  157.                  enum_duplicates duplic,
  158.                  bool ignore)
  159. {
  160.   int error, res;
  161.   /*
  162.     log_on is about delayed inserts only.
  163.     By default, both logs are enabled (this won't cause problems if the server
  164.     runs without --log-update or --log-bin).
  165.   */
  166.   int log_on= DELAYED_LOG_UPDATE | DELAYED_LOG_BIN ;
  167.   bool transactional_table, log_delayed;
  168.   uint value_count;
  169.   ulong counter = 1;
  170.   ulonglong id;
  171.   COPY_INFO info;
  172.   TABLE *table;
  173.   List_iterator_fast<List_item> its(values_list);
  174.   List_item *values;
  175. #ifndef EMBEDDED_LIBRARY
  176.   char *query= thd->query;
  177. #endif
  178.   thr_lock_type lock_type = table_list->lock_type;
  179.   TABLE_LIST *insert_table_list= (TABLE_LIST*)
  180.     thd->lex->select_lex.table_list.first;
  181.   DBUG_ENTER("mysql_insert");
  182.   if (!(thd->options & OPTION_UPDATE_LOG))
  183.     log_on&= ~(int) DELAYED_LOG_UPDATE;
  184.   if (!(thd->options & OPTION_BIN_LOG))
  185.     log_on&= ~(int) DELAYED_LOG_BIN;
  186.   /*
  187.     in safe mode or with skip-new change delayed insert to be regular
  188.     if we are told to replace duplicates, the insert cannot be concurrent
  189.     delayed insert changed to regular in slave thread
  190.    */
  191. #ifdef EMBEDDED_LIBRARY
  192.   if (lock_type == TL_WRITE_DELAYED)
  193.     lock_type=TL_WRITE;
  194. #else
  195.   if ((lock_type == TL_WRITE_DELAYED &&
  196.        ((specialflag & (SPECIAL_NO_NEW_FUNC | SPECIAL_SAFE_MODE)) ||
  197. thd->slave_thread || !thd->variables.max_insert_delayed_threads)) ||
  198.       (lock_type == TL_WRITE_CONCURRENT_INSERT && duplic == DUP_REPLACE) ||
  199.       (duplic == DUP_UPDATE))
  200.     lock_type=TL_WRITE;
  201. #endif
  202.   table_list->lock_type= lock_type;
  203. #ifndef EMBEDDED_LIBRARY
  204.   if (lock_type == TL_WRITE_DELAYED)
  205.   {
  206.     if (thd->locked_tables)
  207.     {
  208.       if (find_locked_table(thd,
  209.     table_list->db ? table_list->db : thd->db,
  210.     table_list->real_name))
  211.       {
  212. my_printf_error(ER_DELAYED_INSERT_TABLE_LOCKED,
  213. ER(ER_DELAYED_INSERT_TABLE_LOCKED),
  214. MYF(0), table_list->real_name);
  215. DBUG_RETURN(-1);
  216.       }
  217.     }
  218.     if ((table= delayed_get_table(thd,table_list)) && !thd->is_fatal_error)
  219.     {
  220.       res= 0;
  221.       if (table_list->next) /* if sub select */
  222. res= open_and_lock_tables(thd, table_list->next);
  223.     }
  224.     else
  225.     {
  226.       /* Too many delayed insert threads;  Use a normal insert */
  227.       table_list->lock_type= lock_type= TL_WRITE;
  228.       res= open_and_lock_tables(thd, table_list);
  229.     }
  230.   }
  231.   else
  232. #endif /* EMBEDDED_LIBRARY */
  233.     res= open_and_lock_tables(thd, table_list);
  234.   if (res || thd->is_fatal_error)
  235.     DBUG_RETURN(-1);
  236.   table= table_list->table;
  237.   thd->proc_info="init";
  238.   thd->used_tables=0;
  239.   values= its++;
  240.   if (mysql_prepare_insert(thd, table_list, insert_table_list,
  241.                            insert_table_list, table,
  242.    fields, values, update_fields,
  243.    update_values, duplic))
  244.     goto abort;
  245.   value_count= values->elements;
  246.   while ((values= its++))
  247.   {
  248.     counter++;
  249.     if (values->elements != value_count)
  250.     {
  251.       my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  252.       ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  253.       MYF(0),counter);
  254.       goto abort;
  255.     }
  256.     if (setup_fields(thd, 0, insert_table_list, *values, 0, 0, 0))
  257.       goto abort;
  258.   }
  259.   its.rewind ();
  260.   /*
  261.     Fill in the given fields and dump it to the table file
  262.   */
  263.   info.records= info.deleted= info.copied= info.updated= 0;
  264.   info.ignore= ignore;
  265.   info.handle_duplicates=duplic;
  266.   info.update_fields= &update_fields;
  267.   info.update_values= &update_values;
  268.   /*
  269.     Count warnings for all inserts.
  270.     For single line insert, generate an error if try to set a NOT NULL field
  271.     to NULL
  272.   */
  273.   thd->count_cuted_fields= ((values_list.elements == 1) ?
  274.     CHECK_FIELD_ERROR_FOR_NULL :
  275.     CHECK_FIELD_WARN);
  276.   thd->cuted_fields = 0L;
  277.   table->next_number_field=table->found_next_number_field;
  278.   error=0;
  279.   id=0;
  280.   thd->proc_info="update";
  281.   if (duplic != DUP_ERROR || ignore)
  282.     table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  283.   /*
  284.     let's *try* to start bulk inserts. It won't necessary
  285.     start them as values_list.elements should be greater than
  286.     some - handler dependent - threshold.
  287.     So we call start_bulk_insert to perform nesessary checks on
  288.     values_list.elements, and - if nothing else - to initialize
  289.     the code to make the call of end_bulk_insert() below safe.
  290.   */
  291.   if (lock_type != TL_WRITE_DELAYED)
  292.     table->file->start_bulk_insert(values_list.elements);
  293.   while ((values= its++))
  294.   {
  295.     if (fields.elements || !value_count)
  296.     {
  297.       restore_record(table,default_values); // Get empty record
  298.       if (fill_record(fields, *values, 0)|| thd->net.report_error ||
  299.   check_null_fields(thd,table))
  300.       {
  301. if (values_list.elements != 1 && !thd->net.report_error)
  302. {
  303.   info.records++;
  304.   continue;
  305. }
  306. error=1;
  307. break;
  308.       }
  309.     }
  310.     else
  311.     {
  312.       if (thd->used_tables) // Column used in values()
  313. restore_record(table,default_values); // Get empty record
  314.       else
  315. table->record[0][0]=table->default_values[0]; // Fix delete marker
  316.       if (fill_record(table->field,*values, 0) || thd->net.report_error)
  317.       {
  318. if (values_list.elements != 1 && ! thd->net.report_error)
  319. {
  320.   info.records++;
  321.   continue;
  322. }
  323. error=1;
  324. break;
  325.       }
  326.     }
  327. #ifndef EMBEDDED_LIBRARY
  328.     if (lock_type == TL_WRITE_DELAYED)
  329.     {
  330.       error=write_delayed(thd, table, duplic, ignore, query, thd->query_length, log_on);
  331.       query=0;
  332.     }
  333.     else
  334. #endif
  335.       error=write_record(table,&info);
  336.     if (error)
  337.       break;
  338.     /*
  339.       If auto_increment values are used, save the first one
  340.        for LAST_INSERT_ID() and for the update log.
  341.        We can't use insert_id() as we don't want to touch the
  342.        last_insert_id_used flag.
  343.     */
  344.     if (! id && thd->insert_id_used)
  345.     { // Get auto increment value
  346.       id= thd->last_insert_id;
  347.     }
  348.     thd->row_count++;
  349.   }
  350.   /*
  351.     Now all rows are inserted.  Time to update logs and sends response to
  352.     user
  353.   */
  354. #ifndef EMBEDDED_LIBRARY
  355.   if (lock_type == TL_WRITE_DELAYED)
  356.   {
  357.     if (!error)
  358.     {
  359.       id=0; // No auto_increment id
  360.       info.copied=values_list.elements;
  361.       end_delayed_insert(thd);
  362.     }
  363.     query_cache_invalidate3(thd, table_list, 1);
  364.   }
  365.   else
  366. #endif
  367.   {
  368.     if (table->file->end_bulk_insert() && !error)
  369.     {
  370.       table->file->print_error(my_errno,MYF(0));
  371.       error=1;
  372.     }
  373.     if (id && values_list.elements != 1)
  374.       thd->insert_id(id); // For update log
  375.     else if (table->next_number_field && info.copied)
  376.       id=table->next_number_field->val_int(); // Return auto_increment value
  377.     /*
  378.       Invalidate the table in the query cache if something changed.
  379.       For the transactional algorithm to work the invalidation must be
  380.       before binlog writing and ha_autocommit_...
  381.     */
  382.     if (info.copied || info.deleted || info.updated)
  383.       query_cache_invalidate3(thd, table_list, 1);
  384.     transactional_table= table->file->has_transactions();
  385.     log_delayed= (transactional_table || table->tmp_table);
  386.     if ((info.copied || info.deleted || info.updated) &&
  387. (error <= 0 || !transactional_table))
  388.     {
  389.       mysql_update_log.write(thd, thd->query, thd->query_length);
  390.       if (mysql_bin_log.is_open())
  391.       {
  392.         if (error <= 0)
  393.           thd->clear_error();
  394. Query_log_event qinfo(thd, thd->query, thd->query_length,
  395.       log_delayed, FALSE);
  396. if (mysql_bin_log.write(&qinfo) && transactional_table)
  397.   error=1;
  398.       }
  399.       if (!log_delayed)
  400. thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
  401.     }
  402.     if (transactional_table)
  403.       error=ha_autocommit_or_rollback(thd,error);
  404.     if (thd->lock)
  405.     {
  406.       mysql_unlock_tables(thd, thd->lock);
  407.       thd->lock=0;
  408.     }
  409.   }
  410.   thd->proc_info="end";
  411.   table->next_number_field=0;
  412.   thd->count_cuted_fields= CHECK_FIELD_IGNORE;
  413.   thd->next_insert_id=0; // Reset this if wrongly used
  414.   if (duplic != DUP_ERROR || ignore)
  415.     table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  416.   /* Reset value of LAST_INSERT_ID if no rows where inserted */
  417.   if (!info.copied && thd->insert_id_used)
  418.   {
  419.     thd->insert_id(0);
  420.     id=0;
  421.   }
  422.   if (error)
  423.     goto abort;
  424.   if (values_list.elements == 1 && (!(thd->options & OPTION_WARNINGS) ||
  425.     !thd->cuted_fields))
  426.     send_ok(thd,info.copied+info.deleted+info.updated,id);
  427.   else
  428.   {
  429.     char buff[160];
  430.     if (ignore)
  431.       sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
  432.       (lock_type == TL_WRITE_DELAYED) ? (ulong) 0 :
  433.       (ulong) (info.records - info.copied), (ulong) thd->cuted_fields);
  434.     else
  435.       sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
  436.       (ulong) (info.deleted+info.updated), (ulong) thd->cuted_fields);
  437.     ::send_ok(thd,info.copied+info.deleted+info.updated,(ulonglong)id,buff);
  438.   }
  439.   free_underlaid_joins(thd, &thd->lex->select_lex);
  440.   table->insert_values=0;
  441.   DBUG_RETURN(0);
  442. abort:
  443. #ifndef EMBEDDED_LIBRARY
  444.   if (lock_type == TL_WRITE_DELAYED)
  445.     end_delayed_insert(thd);
  446. #endif
  447.   free_underlaid_joins(thd, &thd->lex->select_lex);
  448.   table->insert_values=0;
  449.   DBUG_RETURN(-1);
  450. }
  451. /*
  452.   Prepare items in INSERT statement
  453.   SYNOPSIS
  454.     mysql_prepare_insert()
  455.     thd thread handler
  456.     table_list global table list (not including first table for
  457. INSERT ... SELECT)
  458.     insert_table_list Table we are inserting into (for INSERT ... SELECT)
  459.     dup_table_list Tables to be used in ON DUPLICATE KEY
  460. It's either all global tables or only the table we
  461.                         insert into, depending on if we are using GROUP BY
  462.                         in the SELECT clause).
  463.     values              Values to insert. NULL for INSERT ... SELECT
  464.   TODO (in far future)
  465.     In cases of:
  466.     INSERT INTO t1 SELECT a, sum(a) as sum1 from t2 GROUP BY a
  467.     ON DUPLICATE KEY ...
  468.     we should be able to refer to sum1 in the ON DUPLICATE KEY part
  469.   WARNING
  470.     You MUST set table->insert_values to 0 after calling this function
  471.     before releasing the table object.
  472.   RETURN VALUE
  473.     0   OK
  474.     -1  error (message is not sent to user)
  475. */
  476. int mysql_prepare_insert(THD *thd, TABLE_LIST *table_list,
  477.  TABLE_LIST *insert_table_list,
  478.                          TABLE_LIST *dup_table_list,
  479.                          TABLE *table,
  480.  List<Item> &fields, List_item *values,
  481.  List<Item> &update_fields, List<Item> &update_values,
  482.  enum_duplicates duplic)
  483. {
  484.   DBUG_ENTER("mysql_prepare_insert");
  485.   if (duplic == DUP_UPDATE && !table->insert_values)
  486.   {
  487.     /* it should be allocated before Item::fix_fields() */
  488.     table->insert_values=
  489.       (byte *)alloc_root(thd->mem_root, table->rec_buff_length);
  490.     if (!table->insert_values)
  491.       DBUG_RETURN(-1);
  492.   }
  493.   if (setup_tables(insert_table_list))
  494.     DBUG_RETURN(-1);
  495.   if (values)
  496.   {
  497.     if (check_insert_fields(thd, table, fields, *values) ||
  498.         setup_fields(thd, 0, insert_table_list, *values, 0, 0, 0) ||
  499.         (duplic == DUP_UPDATE &&
  500.          (check_update_fields(thd, table, insert_table_list, update_fields) ||
  501.           setup_fields(thd, 0, dup_table_list, update_values, 1, 0, 0))))
  502.       DBUG_RETURN(-1);
  503.     if (find_real_table_in_list(table_list->next, table_list->db,
  504.                                                   table_list->real_name))
  505.     {
  506.       my_error(ER_UPDATE_TABLE_USED, MYF(0), table_list->real_name);
  507.       DBUG_RETURN(-1);
  508.     }
  509.   }
  510.   if (duplic == DUP_UPDATE || duplic == DUP_REPLACE)
  511.     table->file->extra(HA_EXTRA_RETRIEVE_PRIMARY_KEY);
  512.   DBUG_RETURN(0);
  513. }
  514. /* Check if there is more uniq keys after field */
  515. static int last_uniq_key(TABLE *table,uint keynr)
  516. {
  517.   while (++keynr < table->keys)
  518.     if (table->key_info[keynr].flags & HA_NOSAME)
  519.       return 0;
  520.   return 1;
  521. }
  522. /*
  523.   Write a record to table with optional deleting of conflicting records
  524. */
  525. int write_record(TABLE *table,COPY_INFO *info)
  526. {
  527.   int error;
  528.   char *key=0;
  529.   DBUG_ENTER("write_record");
  530.   info->records++;
  531.   if (info->handle_duplicates == DUP_REPLACE ||
  532.       info->handle_duplicates == DUP_UPDATE)
  533.   {
  534.     while ((error=table->file->write_row(table->record[0])))
  535.     {
  536.       if (error != HA_WRITE_SKIP)
  537. goto err;
  538.       uint key_nr;
  539.       if ((int) (key_nr = table->file->get_dup_key(error)) < 0)
  540.       {
  541. error=HA_WRITE_SKIP; /* Database can't find key */
  542. goto err;
  543.       }
  544.       /*
  545. Don't allow REPLACE to replace a row when a auto_increment column
  546. was used.  This ensures that we don't get a problem when the
  547. whole range of the key has been used.
  548.       */
  549.       if (info->handle_duplicates == DUP_REPLACE &&
  550.           table->next_number_field &&
  551.           key_nr == table->next_number_index &&
  552.   table->file->auto_increment_column_changed)
  553. goto err;
  554.       if (table->file->table_flags() & HA_DUPP_POS)
  555.       {
  556. if (table->file->rnd_pos(table->record[1],table->file->dupp_ref))
  557.   goto err;
  558.       }
  559.       else
  560.       {
  561. if (table->file->extra(HA_EXTRA_FLUSH_CACHE)) /* Not needed with NISAM */
  562. {
  563.   error=my_errno;
  564.   goto err;
  565. }
  566. if (!key)
  567. {
  568.   if (!(key=(char*) my_safe_alloca(table->max_unique_length,
  569.    MAX_KEY_LENGTH)))
  570.   {
  571.     error=ENOMEM;
  572.     goto err;
  573.   }
  574. }
  575. key_copy((byte*) key,table,key_nr,0);
  576. if ((error=(table->file->index_read_idx(table->record[1],key_nr,
  577. (byte*) key,
  578. table->key_info[key_nr].
  579. key_length,
  580. HA_READ_KEY_EXACT))))
  581.   goto err;
  582.       }
  583.       if (info->handle_duplicates == DUP_UPDATE)
  584.       {
  585.         /* we don't check for other UNIQUE keys - the first row
  586.            that matches, is updated. If update causes a conflict again,
  587.            an error is returned
  588.         */
  589. DBUG_ASSERT(table->insert_values != NULL);
  590.         store_record(table,insert_values);
  591.         restore_record(table,record[1]);
  592. DBUG_ASSERT(info->update_fields->elements==info->update_values->elements);
  593.         if (fill_record(*info->update_fields, *info->update_values, 0))
  594.           goto err;
  595.         if ((error=table->file->update_row(table->record[1],table->record[0])))
  596. {
  597.   if ((error == HA_ERR_FOUND_DUPP_KEY) && info->ignore)
  598.     break;
  599.           goto err;
  600. }
  601.         info->updated++;
  602.         break;
  603.       }
  604.       else /* DUP_REPLACE */
  605.       {
  606. /*
  607.   The manual defines the REPLACE semantics that it is either
  608.   an INSERT or DELETE(s) + INSERT; FOREIGN KEY checks in
  609.   InnoDB do not function in the defined way if we allow MySQL
  610.   to convert the latter operation internally to an UPDATE.
  611.           We also should not perform this conversion if we have 
  612.           timestamp field with ON UPDATE which is different from DEFAULT.
  613. */
  614. if (last_uniq_key(table,key_nr) &&
  615.     !table->file->referenced_by_foreign_key() &&
  616.             (table->timestamp_field_type == TIMESTAMP_NO_AUTO_SET ||
  617.              table->timestamp_field_type == TIMESTAMP_AUTO_SET_ON_BOTH))
  618.         {
  619.           if ((error=table->file->update_row(table->record[1],
  620.      table->record[0])))
  621.             goto err;
  622.           info->deleted++;
  623.           break; /* Update logfile and count */
  624.         }
  625.         else if ((error=table->file->delete_row(table->record[1])))
  626.           goto err;
  627.         info->deleted++;
  628.       }
  629.     }
  630.     info->copied++;
  631.   }
  632.   else if ((error=table->file->write_row(table->record[0])))
  633.   {
  634.     if (!info->ignore ||
  635. (error != HA_ERR_FOUND_DUPP_KEY && error != HA_ERR_FOUND_DUPP_UNIQUE))
  636.       goto err;
  637.   }
  638.   else
  639.     info->copied++;
  640.   if (key)
  641.     my_safe_afree(key,table->max_unique_length,MAX_KEY_LENGTH);
  642.   DBUG_RETURN(0);
  643. err:
  644.   if (key)
  645.     my_safe_afree(key,table->max_unique_length,MAX_KEY_LENGTH);
  646.   info->last_errno= error;
  647.   table->file->print_error(error,MYF(0));
  648.   DBUG_RETURN(1);
  649. }
  650. /******************************************************************************
  651.   Check that all fields with arn't null_fields are used
  652.   If DONT_USE_DEFAULT_FIELDS isn't defined use default value for not set
  653.   fields.
  654. ******************************************************************************/
  655. static int check_null_fields(THD *thd __attribute__((unused)),
  656.      TABLE *entry __attribute__((unused)))
  657. {
  658. #ifdef DONT_USE_DEFAULT_FIELDS
  659.   for (Field **field=entry->field ; *field ; field++)
  660.   {
  661.     if ((*field)->query_id != thd->query_id && !(*field)->maybe_null() &&
  662. *field != entry->timestamp_field &&
  663. *field != entry->next_number_field)
  664.     {
  665.       my_printf_error(ER_BAD_NULL_ERROR, ER(ER_BAD_NULL_ERROR),MYF(0),
  666.       (*field)->field_name);
  667.       return 1;
  668.     }
  669.   }
  670. #endif
  671.   return 0;
  672. }
  673. /*****************************************************************************
  674.   Handling of delayed inserts
  675.   A thread is created for each table that one uses with the DELAYED attribute.
  676. *****************************************************************************/
  677. #ifndef EMBEDDED_LIBRARY
  678. class delayed_row :public ilink {
  679. public:
  680.   char *record,*query;
  681.   enum_duplicates dup;
  682.   time_t start_time;
  683.   bool query_start_used,last_insert_id_used,insert_id_used, ignore;
  684.   int log_query;
  685.   ulonglong last_insert_id;
  686.   timestamp_auto_set_type timestamp_field_type;
  687.   uint query_length;
  688.   delayed_row(enum_duplicates dup_arg, bool ignore_arg, int log_query_arg)
  689.     :record(0),query(0),dup(dup_arg),ignore(ignore_arg),log_query(log_query_arg) {}
  690.   ~delayed_row()
  691.   {
  692.     x_free(record);
  693.   }
  694. };
  695. class delayed_insert :public ilink {
  696.   uint locks_in_memory;
  697. public:
  698.   THD thd;
  699.   TABLE *table;
  700.   pthread_mutex_t mutex;
  701.   pthread_cond_t cond,cond_client;
  702.   volatile uint tables_in_use,stacked_inserts;
  703.   volatile bool status,dead;
  704.   COPY_INFO info;
  705.   I_List<delayed_row> rows;
  706.   ulong group_count;
  707.   TABLE_LIST table_list; // Argument
  708.   delayed_insert()
  709.     :locks_in_memory(0),
  710.      table(0),tables_in_use(0),stacked_inserts(0), status(0), dead(0),
  711.      group_count(0)
  712.   {
  713.     thd.user=thd.priv_user=(char*) delayed_user;
  714.     thd.host=(char*) my_localhost;
  715.     thd.current_tablenr=0;
  716.     thd.version=refresh_version;
  717.     thd.command=COM_DELAYED_INSERT;
  718.     thd.lex->current_select= 0;  // for my_message_sql
  719.     thd.lex->sql_command= SQLCOM_INSERT;        // For innodb::store_lock()
  720.     bzero((char*) &thd.net, sizeof(thd.net)); // Safety
  721.     bzero((char*) &table_list, sizeof(table_list)); // Safety
  722.     thd.system_thread= SYSTEM_THREAD_DELAYED_INSERT;
  723.     thd.host_or_ip= "";
  724.     bzero((char*) &info,sizeof(info));
  725.     pthread_mutex_init(&mutex,MY_MUTEX_INIT_FAST);
  726.     pthread_cond_init(&cond,NULL);
  727.     pthread_cond_init(&cond_client,NULL);
  728.     VOID(pthread_mutex_lock(&LOCK_thread_count));
  729.     delayed_insert_threads++;
  730.     VOID(pthread_mutex_unlock(&LOCK_thread_count));
  731.   }
  732.   ~delayed_insert()
  733.   {
  734.     /* The following is not really needed, but just for safety */
  735.     delayed_row *row;
  736.     while ((row=rows.get()))
  737.       delete row;
  738.     if (table)
  739.       close_thread_tables(&thd);
  740.     VOID(pthread_mutex_lock(&LOCK_thread_count));
  741.     pthread_mutex_destroy(&mutex);
  742.     pthread_cond_destroy(&cond);
  743.     pthread_cond_destroy(&cond_client);
  744.     thd.unlink(); // Must be unlinked under lock
  745.     x_free(thd.query);
  746.     thd.user=thd.host=0;
  747.     thread_count--;
  748.     delayed_insert_threads--;
  749.     VOID(pthread_mutex_unlock(&LOCK_thread_count));
  750.     VOID(pthread_cond_broadcast(&COND_thread_count)); /* Tell main we are ready */
  751.   }
  752.   /* The following is for checking when we can delete ourselves */
  753.   inline void lock()
  754.   {
  755.     locks_in_memory++; // Assume LOCK_delay_insert
  756.   }
  757.   void unlock()
  758.   {
  759.     pthread_mutex_lock(&LOCK_delayed_insert);
  760.     if (!--locks_in_memory)
  761.     {
  762.       pthread_mutex_lock(&mutex);
  763.       if (thd.killed && ! stacked_inserts && ! tables_in_use)
  764.       {
  765. pthread_cond_signal(&cond);
  766. status=1;
  767.       }
  768.       pthread_mutex_unlock(&mutex);
  769.     }
  770.     pthread_mutex_unlock(&LOCK_delayed_insert);
  771.   }
  772.   inline uint lock_count() { return locks_in_memory; }
  773.   TABLE* get_local_table(THD* client_thd);
  774.   bool handle_inserts(void);
  775. };
  776. I_List<delayed_insert> delayed_threads;
  777. delayed_insert *find_handler(THD *thd, TABLE_LIST *table_list)
  778. {
  779.   thd->proc_info="waiting for delay_list";
  780.   pthread_mutex_lock(&LOCK_delayed_insert); // Protect master list
  781.   I_List_iterator<delayed_insert> it(delayed_threads);
  782.   delayed_insert *tmp;
  783.   while ((tmp=it++))
  784.   {
  785.     if (!strcmp(tmp->thd.db,table_list->db) &&
  786. !strcmp(table_list->real_name,tmp->table->real_name))
  787.     {
  788.       tmp->lock();
  789.       break;
  790.     }
  791.   }
  792.   pthread_mutex_unlock(&LOCK_delayed_insert); // For unlink from list
  793.   return tmp;
  794. }
  795. static TABLE *delayed_get_table(THD *thd,TABLE_LIST *table_list)
  796. {
  797.   int error;
  798.   delayed_insert *tmp;
  799.   TABLE *table;
  800.   DBUG_ENTER("delayed_get_table");
  801.   if (!table_list->db)
  802.     table_list->db=thd->db;
  803.   /* Find the thread which handles this table. */
  804.   if (!(tmp=find_handler(thd,table_list)))
  805.   {
  806.     /*
  807.       No match. Create a new thread to handle the table, but
  808.       no more than max_insert_delayed_threads.
  809.     */
  810.     if (delayed_insert_threads >= thd->variables.max_insert_delayed_threads)
  811.       DBUG_RETURN(0);
  812.     thd->proc_info="Creating delayed handler";
  813.     pthread_mutex_lock(&LOCK_delayed_create);
  814.     /*
  815.       The first search above was done without LOCK_delayed_create.
  816.       Another thread might have created the handler in between. Search again.
  817.     */
  818.     if (! (tmp= find_handler(thd, table_list)))
  819.     {
  820.       /*
  821.         Avoid that a global read lock steps in while we are creating the
  822.         new thread. It would block trying to open the table. Hence, the
  823.         DI thread and this thread would wait until after the global
  824.         readlock is gone. Since the insert thread needs to wait for a
  825.         global read lock anyway, we do it right now. Note that
  826.         wait_if_global_read_lock() sets a protection against a new
  827.         global read lock when it succeeds. This needs to be released by
  828.         start_waiting_global_read_lock().
  829.       */
  830.       if (wait_if_global_read_lock(thd, 0, 1))
  831.         goto err;
  832.       if (!(tmp=new delayed_insert()))
  833.       {
  834. my_error(ER_OUTOFMEMORY,MYF(0),sizeof(delayed_insert));
  835. goto err1;
  836.       }
  837.       pthread_mutex_lock(&LOCK_thread_count);
  838.       thread_count++;
  839.       pthread_mutex_unlock(&LOCK_thread_count);
  840.       if (!(tmp->thd.db=my_strdup(table_list->db,MYF(MY_WME))) ||
  841.   !(tmp->thd.query=my_strdup(table_list->real_name,MYF(MY_WME))))
  842.       {
  843. delete tmp;
  844. my_error(ER_OUT_OF_RESOURCES,MYF(0));
  845. goto err1;
  846.       }
  847.       tmp->table_list= *table_list; // Needed to open table
  848.       tmp->table_list.db= tmp->thd.db;
  849.       tmp->table_list.alias= tmp->table_list.real_name=tmp->thd.query;
  850.       tmp->lock();
  851.       pthread_mutex_lock(&tmp->mutex);
  852.       if ((error=pthread_create(&tmp->thd.real_id,&connection_attrib,
  853. handle_delayed_insert,(void*) tmp)))
  854.       {
  855. DBUG_PRINT("error",
  856.    ("Can't create thread to handle delayed insert (error %d)",
  857.     error));
  858. pthread_mutex_unlock(&tmp->mutex);
  859. tmp->unlock();
  860. delete tmp;
  861. net_printf(thd,ER_CANT_CREATE_THREAD,error);
  862. goto err1;
  863.       }
  864.       /* Wait until table is open */
  865.       thd->proc_info="waiting for handler open";
  866.       while (!tmp->thd.killed && !tmp->table && !thd->killed)
  867.       {
  868. pthread_cond_wait(&tmp->cond_client,&tmp->mutex);
  869.       }
  870.       pthread_mutex_unlock(&tmp->mutex);
  871.       /*
  872.         Release the protection against the global read lock and wake
  873.         everyone, who might want to set a global read lock.
  874.       */
  875.       start_waiting_global_read_lock(thd);
  876.       thd->proc_info="got old table";
  877.       if (tmp->thd.killed)
  878.       {
  879. if (tmp->thd.is_fatal_error)
  880. {
  881.   /* Copy error message and abort */
  882.   thd->fatal_error();
  883.   strmov(thd->net.last_error,tmp->thd.net.last_error);
  884.   thd->net.last_errno=tmp->thd.net.last_errno;
  885. }
  886. tmp->unlock();
  887. goto err;
  888.       }
  889.       if (thd->killed)
  890.       {
  891. tmp->unlock();
  892. goto err;
  893.       }
  894.     }
  895.     pthread_mutex_unlock(&LOCK_delayed_create);
  896.   }
  897.   pthread_mutex_lock(&tmp->mutex);
  898.   table=tmp->get_local_table(thd);
  899.   pthread_mutex_unlock(&tmp->mutex);
  900.   if (table)
  901.     thd->di=tmp;
  902.   else if (tmp->thd.is_fatal_error)
  903.     thd->fatal_error();
  904.   /* Unlock the delayed insert object after its last access. */
  905.   tmp->unlock();
  906.   DBUG_RETURN((table_list->table=table));
  907.  err1:
  908.   thd->fatal_error();
  909.   /*
  910.     Release the protection against the global read lock and wake
  911.     everyone, who might want to set a global read lock.
  912.   */
  913.   start_waiting_global_read_lock(thd);
  914.  err:
  915.   pthread_mutex_unlock(&LOCK_delayed_create);
  916.   DBUG_RETURN(0); // Continue with normal insert
  917. }
  918. /*
  919.   As we can't let many threads modify the same TABLE structure, we create
  920.   an own structure for each tread.  This includes a row buffer to save the
  921.   column values and new fields that points to the new row buffer.
  922.   The memory is allocated in the client thread and is freed automaticly.
  923. */
  924. TABLE *delayed_insert::get_local_table(THD* client_thd)
  925. {
  926.   my_ptrdiff_t adjust_ptrs;
  927.   Field **field,**org_field, *found_next_number_field;
  928.   TABLE *copy;
  929.   /* First request insert thread to get a lock */
  930.   status=1;
  931.   tables_in_use++;
  932.   if (!thd.lock) // Table is not locked
  933.   {
  934.     client_thd->proc_info="waiting for handler lock";
  935.     pthread_cond_signal(&cond); // Tell handler to lock table
  936.     while (!dead && !thd.lock && ! client_thd->killed)
  937.     {
  938.       pthread_cond_wait(&cond_client,&mutex);
  939.     }
  940.     client_thd->proc_info="got handler lock";
  941.     if (client_thd->killed)
  942.       goto error;
  943.     if (dead)
  944.     {
  945.       strmov(client_thd->net.last_error,thd.net.last_error);
  946.       client_thd->net.last_errno=thd.net.last_errno;
  947.       goto error;
  948.     }
  949.   }
  950.   client_thd->proc_info="allocating local table";
  951.   copy= (TABLE*) client_thd->alloc(sizeof(*copy)+
  952.    (table->fields+1)*sizeof(Field**)+
  953.    table->reclength);
  954.   if (!copy)
  955.     goto error;
  956.   *copy= *table;
  957.   bzero((char*) &copy->name_hash,sizeof(copy->name_hash)); // No name hashing
  958.   /* We don't need to change the file handler here */
  959.   field=copy->field=(Field**) (copy+1);
  960.   copy->record[0]=(byte*) (field+table->fields+1);
  961.   memcpy((char*) copy->record[0],(char*) table->record[0],table->reclength);
  962.   /* Make a copy of all fields */
  963.   adjust_ptrs=PTR_BYTE_DIFF(copy->record[0],table->record[0]);
  964.   found_next_number_field=table->found_next_number_field;
  965.   for (org_field=table->field ; *org_field ; org_field++,field++)
  966.   {
  967.     if (!(*field= (*org_field)->new_field(client_thd->mem_root,copy)))
  968.       return 0;
  969.     (*field)->orig_table= copy; // Remove connection
  970.     (*field)->move_field(adjust_ptrs); // Point at copy->record[0]
  971.     if (*org_field == found_next_number_field)
  972.       (*field)->table->found_next_number_field= *field;
  973.   }
  974.   *field=0;
  975.   /* Adjust timestamp */
  976.   if (table->timestamp_field)
  977.   {
  978.     /* Restore offset as this may have been reset in handle_inserts */
  979.     copy->timestamp_field=
  980.       (Field_timestamp*) copy->field[table->timestamp_field_offset];
  981.     copy->timestamp_field->unireg_check= table->timestamp_field->unireg_check;
  982.     copy->timestamp_field_type= copy->timestamp_field->get_auto_set_type();
  983.   }
  984.   /* _rowid is not used with delayed insert */
  985.   copy->rowid_field=0;
  986.   /* Adjust in_use for pointing to client thread */
  987.   copy->in_use= client_thd;
  988.   
  989.   return copy;
  990.   /* Got fatal error */
  991.  error:
  992.   tables_in_use--;
  993.   status=1;
  994.   pthread_cond_signal(&cond); // Inform thread about abort
  995.   return 0;
  996. }
  997. /* Put a question in queue */
  998. static int write_delayed(THD *thd,TABLE *table,enum_duplicates duplic, bool ignore,
  999.  char *query, uint query_length, int log_on)
  1000. {
  1001.   delayed_row *row=0;
  1002.   delayed_insert *di=thd->di;
  1003.   DBUG_ENTER("write_delayed");
  1004.   thd->proc_info="waiting for handler insert";
  1005.   pthread_mutex_lock(&di->mutex);
  1006.   while (di->stacked_inserts >= delayed_queue_size && !thd->killed)
  1007.     pthread_cond_wait(&di->cond_client,&di->mutex);
  1008.   thd->proc_info="storing row into queue";
  1009.   if (thd->killed || !(row= new delayed_row(duplic, ignore, log_on)))
  1010.     goto err;
  1011.   if (!query)
  1012.     query_length=0;
  1013.   if (!(row->record= (char*) my_malloc(table->reclength+query_length+1,
  1014.        MYF(MY_WME))))
  1015.     goto err;
  1016.   memcpy(row->record,table->record[0],table->reclength);
  1017.   if (query_length)
  1018.   {
  1019.     row->query=row->record+table->reclength;
  1020.     memcpy(row->query,query,query_length+1);
  1021.   }
  1022.   row->query_length= query_length;
  1023.   row->start_time= thd->start_time;
  1024.   row->query_start_used= thd->query_start_used;
  1025.   row->last_insert_id_used= thd->last_insert_id_used;
  1026.   row->insert_id_used= thd->insert_id_used;
  1027.   row->last_insert_id= thd->last_insert_id;
  1028.   row->timestamp_field_type=    table->timestamp_field_type;
  1029.   di->rows.push_back(row);
  1030.   di->stacked_inserts++;
  1031.   di->status=1;
  1032.   if (table->blob_fields)
  1033.     unlink_blobs(table);
  1034.   pthread_cond_signal(&di->cond);
  1035.   thread_safe_increment(delayed_rows_in_use,&LOCK_delayed_status);
  1036.   pthread_mutex_unlock(&di->mutex);
  1037.   DBUG_RETURN(0);
  1038.  err:
  1039.   delete row;
  1040.   pthread_mutex_unlock(&di->mutex);
  1041.   DBUG_RETURN(1);
  1042. }
  1043. static void end_delayed_insert(THD *thd)
  1044. {
  1045.   DBUG_ENTER("end_delayed_insert");
  1046.   delayed_insert *di=thd->di;
  1047.   pthread_mutex_lock(&di->mutex);
  1048.   DBUG_PRINT("info",("tables in use: %d",di->tables_in_use));
  1049.   if (!--di->tables_in_use || di->thd.killed)
  1050.   { // Unlock table
  1051.     di->status=1;
  1052.     pthread_cond_signal(&di->cond);
  1053.   }
  1054.   pthread_mutex_unlock(&di->mutex);
  1055.   DBUG_VOID_RETURN;
  1056. }
  1057. /* We kill all delayed threads when doing flush-tables */
  1058. void kill_delayed_threads(void)
  1059. {
  1060.   VOID(pthread_mutex_lock(&LOCK_delayed_insert)); // For unlink from list
  1061.   I_List_iterator<delayed_insert> it(delayed_threads);
  1062.   delayed_insert *tmp;
  1063.   while ((tmp=it++))
  1064.   {
  1065.     /* Ensure that the thread doesn't kill itself while we are looking at it */
  1066.     pthread_mutex_lock(&tmp->mutex);
  1067.     tmp->thd.killed=1;
  1068.     if (tmp->thd.mysys_var)
  1069.     {
  1070.       pthread_mutex_lock(&tmp->thd.mysys_var->mutex);
  1071.       if (tmp->thd.mysys_var->current_cond)
  1072.       {
  1073. /*
  1074.   We need the following test because the main mutex may be locked
  1075.   in handle_delayed_insert()
  1076. */
  1077. if (&tmp->mutex != tmp->thd.mysys_var->current_mutex)
  1078.   pthread_mutex_lock(tmp->thd.mysys_var->current_mutex);
  1079. pthread_cond_broadcast(tmp->thd.mysys_var->current_cond);
  1080. if (&tmp->mutex != tmp->thd.mysys_var->current_mutex)
  1081.   pthread_mutex_unlock(tmp->thd.mysys_var->current_mutex);
  1082.       }
  1083.       pthread_mutex_unlock(&tmp->thd.mysys_var->mutex);
  1084.     }
  1085.     pthread_mutex_unlock(&tmp->mutex);
  1086.   }
  1087.   VOID(pthread_mutex_unlock(&LOCK_delayed_insert)); // For unlink from list
  1088. }
  1089. /*
  1090.  * Create a new delayed insert thread
  1091. */
  1092. extern "C" pthread_handler_decl(handle_delayed_insert,arg)
  1093. {
  1094.   delayed_insert *di=(delayed_insert*) arg;
  1095.   THD *thd= &di->thd;
  1096.   pthread_detach_this_thread();
  1097.   /* Add thread to THD list so that's it's visible in 'show processlist' */
  1098.   pthread_mutex_lock(&LOCK_thread_count);
  1099.   thd->thread_id=thread_id++;
  1100.   thd->end_time();
  1101.   threads.append(thd);
  1102.   thd->killed=abort_loop;
  1103.   pthread_mutex_unlock(&LOCK_thread_count);
  1104.   /*
  1105.     Wait until the client runs into pthread_cond_wait(),
  1106.     where we free it after the table is opened and di linked in the list.
  1107.     If we did not wait here, the client might detect the opened table
  1108.     before it is linked to the list. It would release LOCK_delayed_create
  1109.     and allow another thread to create another handler for the same table,
  1110.     since it does not find one in the list.
  1111.   */
  1112.   pthread_mutex_lock(&di->mutex);
  1113. #if !defined( __WIN__) && !defined(OS2) /* Win32 calls this in pthread_create */
  1114.   if (my_thread_init())
  1115.   {
  1116.     strmov(thd->net.last_error,ER(thd->net.last_errno=ER_OUT_OF_RESOURCES));
  1117.     goto end;
  1118.   }
  1119. #endif
  1120.   DBUG_ENTER("handle_delayed_insert");
  1121.   if (init_thr_lock() || thd->store_globals())
  1122.   {
  1123.     thd->fatal_error();
  1124.     strmov(thd->net.last_error,ER(thd->net.last_errno=ER_OUT_OF_RESOURCES));
  1125.     goto end;
  1126.   }
  1127. #if !defined(__WIN__) && !defined(OS2) && !defined(__NETWARE__)
  1128.   sigset_t set;
  1129.   VOID(sigemptyset(&set)); // Get mask in use
  1130.   VOID(pthread_sigmask(SIG_UNBLOCK,&set,&thd->block_signals));
  1131. #endif
  1132.   /* open table */
  1133.   if (!(di->table=open_ltable(thd,&di->table_list,TL_WRITE_DELAYED)))
  1134.   {
  1135.     thd->fatal_error(); // Abort waiting inserts
  1136.     goto end;
  1137.   }
  1138.   if (!(di->table->file->table_flags() & HA_CAN_INSERT_DELAYED))
  1139.   {
  1140.     thd->fatal_error();
  1141.     my_error(ER_ILLEGAL_HA, MYF(0), di->table_list.real_name);
  1142.     goto end;
  1143.   }
  1144.   di->table->copy_blobs=1;
  1145.   /* One can now use this */
  1146.   pthread_mutex_lock(&LOCK_delayed_insert);
  1147.   delayed_threads.append(di);
  1148.   pthread_mutex_unlock(&LOCK_delayed_insert);
  1149.   /* Tell client that the thread is initialized */
  1150.   pthread_cond_signal(&di->cond_client);
  1151.   /* Now wait until we get an insert or lock to handle */
  1152.   /* We will not abort as long as a client thread uses this thread */
  1153.   for (;;)
  1154.   {
  1155.     if (thd->killed)
  1156.     {
  1157.       uint lock_count;
  1158.       /*
  1159. Remove this from delay insert list so that no one can request a
  1160. table from this
  1161.       */
  1162.       pthread_mutex_unlock(&di->mutex);
  1163.       pthread_mutex_lock(&LOCK_delayed_insert);
  1164.       di->unlink();
  1165.       lock_count=di->lock_count();
  1166.       pthread_mutex_unlock(&LOCK_delayed_insert);
  1167.       pthread_mutex_lock(&di->mutex);
  1168.       if (!lock_count && !di->tables_in_use && !di->stacked_inserts)
  1169. break; // Time to die
  1170.     }
  1171.     if (!di->status && !di->stacked_inserts)
  1172.     {
  1173.       struct timespec abstime;
  1174.       set_timespec(abstime, delayed_insert_timeout);
  1175.       /* Information for pthread_kill */
  1176.       di->thd.mysys_var->current_mutex= &di->mutex;
  1177.       di->thd.mysys_var->current_cond= &di->cond;
  1178.       di->thd.proc_info="Waiting for INSERT";
  1179.       DBUG_PRINT("info",("Waiting for someone to insert rows"));
  1180.       while (!thd->killed)
  1181.       {
  1182. int error;
  1183. #if defined(HAVE_BROKEN_COND_TIMEDWAIT)
  1184. error=pthread_cond_wait(&di->cond,&di->mutex);
  1185. #else
  1186. error=pthread_cond_timedwait(&di->cond,&di->mutex,&abstime);
  1187. #ifdef EXTRA_DEBUG
  1188. if (error && error != EINTR && error != ETIMEDOUT)
  1189. {
  1190.   fprintf(stderr, "Got error %d from pthread_cond_timedwaitn",error);
  1191.   DBUG_PRINT("error",("Got error %d from pthread_cond_timedwait",
  1192.       error));
  1193. }
  1194. #endif
  1195. #endif
  1196. if (thd->killed || di->status)
  1197.   break;
  1198. if (error == ETIME || error == ETIMEDOUT)
  1199. {
  1200.   thd->killed=1;
  1201.   break;
  1202. }
  1203.       }
  1204.       /* We can't lock di->mutex and mysys_var->mutex at the same time */
  1205.       pthread_mutex_unlock(&di->mutex);
  1206.       pthread_mutex_lock(&di->thd.mysys_var->mutex);
  1207.       di->thd.mysys_var->current_mutex= 0;
  1208.       di->thd.mysys_var->current_cond= 0;
  1209.       pthread_mutex_unlock(&di->thd.mysys_var->mutex);
  1210.       pthread_mutex_lock(&di->mutex);
  1211.     }
  1212.     di->thd.proc_info=0;
  1213.     if (di->tables_in_use && ! thd->lock)
  1214.     {
  1215.       /*
  1216.         Request for new delayed insert.
  1217.         Lock the table, but avoid to be blocked by a global read lock.
  1218.         If we got here while a global read lock exists, then one or more
  1219.         inserts started before the lock was requested. These are allowed
  1220.         to complete their work before the server returns control to the
  1221.         client which requested the global read lock. The delayed insert
  1222.         handler will close the table and finish when the outstanding
  1223.         inserts are done.
  1224.       */
  1225.       if (! (thd->lock= mysql_lock_tables(thd, &di->table, 1,
  1226.                                           MYSQL_LOCK_IGNORE_GLOBAL_READ_LOCK)))
  1227.       {
  1228. di->dead= 1; // Some fatal error
  1229.         thd->killed= 1;
  1230.       }
  1231.       pthread_cond_broadcast(&di->cond_client);
  1232.     }
  1233.     if (di->stacked_inserts)
  1234.     {
  1235.       if (di->handle_inserts())
  1236.       {
  1237. di->dead= 1; // Some fatal error
  1238.         thd->killed= 1;
  1239.       }
  1240.     }
  1241.     di->status=0;
  1242.     if (!di->stacked_inserts && !di->tables_in_use && thd->lock)
  1243.     {
  1244.       /*
  1245.         No one is doing a insert delayed
  1246.         Unlock table so that other threads can use it
  1247.       */
  1248.       MYSQL_LOCK *lock=thd->lock;
  1249.       thd->lock=0;
  1250.       pthread_mutex_unlock(&di->mutex);
  1251.       mysql_unlock_tables(thd, lock);
  1252.       di->group_count=0;
  1253.       pthread_mutex_lock(&di->mutex);
  1254.     }
  1255.     if (di->tables_in_use)
  1256.       pthread_cond_broadcast(&di->cond_client); // If waiting clients
  1257.   }
  1258. end:
  1259.   /*
  1260.     di should be unlinked from the thread handler list and have no active
  1261.     clients
  1262.   */
  1263.   close_thread_tables(thd); // Free the table
  1264.   di->table=0;
  1265.   di->dead= 1;                                  // If error
  1266.   thd->killed= 1;
  1267.   pthread_cond_broadcast(&di->cond_client); // Safety
  1268.   pthread_mutex_unlock(&di->mutex);
  1269.   pthread_mutex_lock(&LOCK_delayed_create); // Because of delayed_get_table
  1270.   pthread_mutex_lock(&LOCK_delayed_insert);
  1271.   delete di;
  1272.   pthread_mutex_unlock(&LOCK_delayed_insert);
  1273.   pthread_mutex_unlock(&LOCK_delayed_create);  
  1274.   my_thread_end();
  1275.   pthread_exit(0);
  1276.   DBUG_RETURN(0);
  1277. }
  1278. /* Remove pointers from temporary fields to allocated values */
  1279. static void unlink_blobs(register TABLE *table)
  1280. {
  1281.   for (Field **ptr=table->field ; *ptr ; ptr++)
  1282.   {
  1283.     if ((*ptr)->flags & BLOB_FLAG)
  1284.       ((Field_blob *) (*ptr))->clear_temporary();
  1285.   }
  1286. }
  1287. /* Free blobs stored in current row */
  1288. static void free_delayed_insert_blobs(register TABLE *table)
  1289. {
  1290.   for (Field **ptr=table->field ; *ptr ; ptr++)
  1291.   {
  1292.     if ((*ptr)->flags & BLOB_FLAG)
  1293.     {
  1294.       char *str;
  1295.       ((Field_blob *) (*ptr))->get_ptr(&str);
  1296.       my_free(str,MYF(MY_ALLOW_ZERO_PTR));
  1297.       ((Field_blob *) (*ptr))->reset();
  1298.     }
  1299.   }
  1300. }
  1301. bool delayed_insert::handle_inserts(void)
  1302. {
  1303.   int error;
  1304.   ulong max_rows;
  1305.   bool using_ignore=0, using_bin_log=mysql_bin_log.is_open();
  1306.   delayed_row *row;
  1307.   DBUG_ENTER("handle_inserts");
  1308.   /* Allow client to insert new rows */
  1309.   pthread_mutex_unlock(&mutex);
  1310.   table->next_number_field=table->found_next_number_field;
  1311.   thd.proc_info="upgrading lock";
  1312.   if (thr_upgrade_write_delay_lock(*thd.lock->locks))
  1313.   {
  1314.     /* This can only happen if thread is killed by shutdown */
  1315.     sql_print_error(ER(ER_DELAYED_CANT_CHANGE_LOCK),table->real_name);
  1316.     goto err;
  1317.   }
  1318.   thd.proc_info="insert";
  1319.   max_rows= delayed_insert_limit;
  1320.   if (thd.killed || table->version != refresh_version)
  1321.   {
  1322.     thd.killed=1;
  1323.     max_rows= ~(ulong)0;                        // Do as much as possible
  1324.   }
  1325.   /*
  1326.     We can't use row caching when using the binary log because if
  1327.     we get a crash, then binary log will contain rows that are not yet
  1328.     written to disk, which will cause problems in replication.
  1329.   */
  1330.   if (!using_bin_log)
  1331.     table->file->extra(HA_EXTRA_WRITE_CACHE);
  1332.   pthread_mutex_lock(&mutex);
  1333.   while ((row=rows.get()))
  1334.   {
  1335.     stacked_inserts--;
  1336.     pthread_mutex_unlock(&mutex);
  1337.     memcpy(table->record[0],row->record,table->reclength);
  1338.     thd.start_time=row->start_time;
  1339.     thd.query_start_used=row->query_start_used;
  1340.     thd.last_insert_id=row->last_insert_id;
  1341.     thd.last_insert_id_used=row->last_insert_id_used;
  1342.     thd.insert_id_used=row->insert_id_used;
  1343.     table->timestamp_field_type= row->timestamp_field_type;
  1344.     info.ignore= row->ignore;
  1345.     info.handle_duplicates= row->dup;
  1346.     if (info.ignore ||
  1347. info.handle_duplicates != DUP_ERROR)
  1348.     {
  1349.       table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  1350.       using_ignore=1;
  1351.     }
  1352.     thd.clear_error(); // reset error for binlog
  1353.     if (write_record(table,&info))
  1354.     {
  1355.       info.error_count++; // Ignore errors
  1356.       thread_safe_increment(delayed_insert_errors,&LOCK_delayed_status);
  1357.       row->log_query = 0;
  1358.     }
  1359.     if (using_ignore)
  1360.     {
  1361.       using_ignore=0;
  1362.       table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1363.     }
  1364.     if (row->query)
  1365.     {
  1366.       if (row->log_query & DELAYED_LOG_UPDATE)
  1367.         mysql_update_log.write(&thd,row->query, row->query_length);
  1368.       if (row->log_query & DELAYED_LOG_BIN && using_bin_log)
  1369.       {
  1370.         Query_log_event qinfo(&thd, row->query, row->query_length,0, FALSE);
  1371.         mysql_bin_log.write(&qinfo);
  1372.       }
  1373.     }
  1374.     if (table->blob_fields)
  1375.       free_delayed_insert_blobs(table);
  1376.     thread_safe_sub(delayed_rows_in_use,1,&LOCK_delayed_status);
  1377.     thread_safe_increment(delayed_insert_writes,&LOCK_delayed_status);
  1378.     pthread_mutex_lock(&mutex);
  1379.     delete row;
  1380.     /*
  1381.       Let READ clients do something once in a while
  1382.       We should however not break in the middle of a multi-line insert
  1383.       if we have binary logging enabled as we don't want other commands
  1384.       on this table until all entries has been processed
  1385.     */
  1386.     if (group_count++ >= max_rows && (row= rows.head()) &&
  1387. (!(row->log_query & DELAYED_LOG_BIN && using_bin_log) ||
  1388.  row->query))
  1389.     {
  1390.       group_count=0;
  1391.       if (stacked_inserts || tables_in_use) // Let these wait a while
  1392.       {
  1393. if (tables_in_use)
  1394.   pthread_cond_broadcast(&cond_client); // If waiting clients
  1395. thd.proc_info="reschedule";
  1396. pthread_mutex_unlock(&mutex);
  1397. if ((error=table->file->extra(HA_EXTRA_NO_CACHE)))
  1398. {
  1399.   /* This should never happen */
  1400.   table->file->print_error(error,MYF(0));
  1401.   sql_print_error("%s",thd.net.last_error);
  1402.   goto err;
  1403. }
  1404. query_cache_invalidate3(&thd, table, 1);
  1405. if (thr_reschedule_write_lock(*thd.lock->locks))
  1406. {
  1407.   /* This should never happen */
  1408.   sql_print_error(ER(ER_DELAYED_CANT_CHANGE_LOCK),table->real_name);
  1409. }
  1410. if (!using_bin_log)
  1411.   table->file->extra(HA_EXTRA_WRITE_CACHE);
  1412. pthread_mutex_lock(&mutex);
  1413. thd.proc_info="insert";
  1414.       }
  1415.       if (tables_in_use)
  1416. pthread_cond_broadcast(&cond_client); // If waiting clients
  1417.     }
  1418.   }
  1419.   thd.proc_info=0;
  1420.   table->next_number_field=0;
  1421.   pthread_mutex_unlock(&mutex);
  1422.   if ((error=table->file->extra(HA_EXTRA_NO_CACHE)))
  1423.   { // This shouldn't happen
  1424.     table->file->print_error(error,MYF(0));
  1425.     sql_print_error("%s",thd.net.last_error);
  1426.     goto err;
  1427.   }
  1428.   query_cache_invalidate3(&thd, table, 1);
  1429.   pthread_mutex_lock(&mutex);
  1430.   DBUG_RETURN(0);
  1431.  err:
  1432.   /* Remove all not used rows */
  1433.   while ((row=rows.get()))
  1434.   {
  1435.     delete row;
  1436.     thread_safe_increment(delayed_insert_errors,&LOCK_delayed_status);
  1437.     stacked_inserts--;
  1438.   }
  1439.   thread_safe_increment(delayed_insert_errors, &LOCK_delayed_status);
  1440.   pthread_mutex_lock(&mutex);
  1441.   DBUG_RETURN(1);
  1442. }
  1443. #endif /* EMBEDDED_LIBRARY */
  1444. /***************************************************************************
  1445.   Store records in INSERT ... SELECT *
  1446. ***************************************************************************/
  1447. int
  1448. select_insert::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
  1449. {
  1450.   int res;
  1451.   LEX *lex= thd->lex;
  1452.   SELECT_LEX *lex_current_select_save= lex->current_select;
  1453.   bool lex_select_no_error= lex->select_lex.no_error;
  1454.   DBUG_ENTER("select_insert::prepare");
  1455.   unit= u;
  1456.   /*
  1457.     Since table in which we are going to insert is added to the first
  1458.     select, LEX::current_select should point to the first select while
  1459.     we are fixing fields from insert list.
  1460.     Since these checks may cause the query to fail, we don't want the
  1461.     error messages to be converted into warnings, must force no_error=0
  1462.   */
  1463.   lex->current_select= &lex->select_lex;
  1464.   lex->select_lex.no_error= 0;
  1465.   res=
  1466.     check_insert_fields(thd, table, *fields, values) ||
  1467.     setup_fields(thd, 0, insert_table_list, values, 0, 0, 0) ||
  1468.     (info.handle_duplicates == DUP_UPDATE &&
  1469.      (check_update_fields(thd, table, insert_table_list, *info.update_fields) ||
  1470.       setup_fields(thd, 0, dup_table_list, *info.update_values, 1, 0, 0)));
  1471.   lex->current_select= lex_current_select_save;
  1472.   lex->select_lex.no_error= lex_select_no_error;
  1473.   if (res)
  1474.     DBUG_RETURN(1);
  1475.   restore_record(table,default_values); // Get empty record
  1476.   table->next_number_field=table->found_next_number_field;
  1477.   thd->cuted_fields=0;
  1478.   if (info.ignore ||
  1479.       info.handle_duplicates != DUP_ERROR)
  1480.     table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  1481.   table->file->start_bulk_insert((ha_rows) 0);
  1482.   DBUG_RETURN(0);
  1483. }
  1484. void select_insert::cleanup()
  1485. {
  1486.   /* select_insert/select_create are never re-used in prepared statement */
  1487.   DBUG_ASSERT(0);
  1488. }
  1489. select_insert::~select_insert()
  1490. {
  1491.   if (table)
  1492.   {
  1493.     table->next_number_field=0;
  1494.     table->file->reset();
  1495.   }
  1496.   thd->count_cuted_fields= CHECK_FIELD_IGNORE;
  1497. }
  1498. bool select_insert::send_data(List<Item> &values)
  1499. {
  1500.   DBUG_ENTER("select_insert::send_data");
  1501.   bool error=0;
  1502.   if (unit->offset_limit_cnt)
  1503.   { // using limit offset,count
  1504.     unit->offset_limit_cnt--;
  1505.     DBUG_RETURN(0);
  1506.   }
  1507.   thd->count_cuted_fields= CHECK_FIELD_WARN; // calc cuted fields
  1508.   store_values(values);
  1509.   error=thd->net.report_error || write_record(table,&info);
  1510.   thd->count_cuted_fields= CHECK_FIELD_IGNORE;
  1511.   if (!error)
  1512.   {
  1513.     /*
  1514.     Restore fields of the record since it is possible that they were
  1515.     changed by ON DUPLICATE KEY UPDATE clause.
  1516.     */
  1517.     if (info.handle_duplicates == DUP_UPDATE)
  1518.       restore_record(table, default_values);
  1519.     if (table->next_number_field)       // Clear for next record
  1520.     {
  1521.       table->next_number_field->reset();
  1522.       if (! last_insert_id && thd->insert_id_used)
  1523.         last_insert_id=thd->insert_id();
  1524.     }
  1525.   }
  1526.   DBUG_RETURN(error);
  1527. }
  1528. void select_insert::store_values(List<Item> &values)
  1529. {
  1530.   if (fields->elements)
  1531.     fill_record(*fields, values, 1);
  1532.   else
  1533.     fill_record(table->field, values, 1);
  1534. }
  1535. void select_insert::send_error(uint errcode,const char *err)
  1536. {
  1537.   DBUG_ENTER("select_insert::send_error");
  1538.   /* TODO error should be sent at the query processing end */
  1539.   ::send_error(thd,errcode,err);
  1540.   if (!table)
  1541.   {
  1542.     /*
  1543.       This can only happen when using CREATE ... SELECT and the table was not
  1544.       created becasue of an syntax error
  1545.     */
  1546.     DBUG_VOID_RETURN;
  1547.   }
  1548.   table->file->end_bulk_insert();
  1549.   /*
  1550.     If at least one row has been inserted/modified and will stay in the table
  1551.     (the table doesn't have transactions) (example: we got a duplicate key
  1552.     error while inserting into a MyISAM table) we must write to the binlog (and
  1553.     the error code will make the slave stop).
  1554.   */
  1555.   if ((info.copied || info.deleted || info.updated) &&
  1556.       !table->file->has_transactions())
  1557.   {
  1558.     if (last_insert_id)
  1559.       thd->insert_id(last_insert_id); // For binary log
  1560.     mysql_update_log.write(thd,thd->query,thd->query_length);
  1561.     if (mysql_bin_log.is_open())
  1562.     {
  1563.       Query_log_event qinfo(thd, thd->query, thd->query_length,
  1564.                             table->file->has_transactions(), FALSE);
  1565.       mysql_bin_log.write(&qinfo);
  1566.     }
  1567.     if (!table->tmp_table)
  1568.       thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
  1569.   }
  1570.   if (info.copied || info.deleted || info.updated)
  1571.     query_cache_invalidate3(thd, table, 1);
  1572.   ha_rollback_stmt(thd);
  1573.   DBUG_VOID_RETURN;
  1574. }
  1575. bool select_insert::send_eof()
  1576. {
  1577.   int error,error2;
  1578.   DBUG_ENTER("select_insert::send_eof");
  1579.   error=table->file->end_bulk_insert();
  1580.   table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1581.   /*
  1582.     We must invalidate the table in the query cache before binlog writing
  1583.     and ha_autocommit_...
  1584.   */
  1585.   if (info.copied || info.deleted || info.updated)
  1586.   {
  1587.     query_cache_invalidate3(thd, table, 1);
  1588.     if (!(table->file->has_transactions() || table->tmp_table))
  1589.       thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
  1590.   }
  1591.   if (last_insert_id)
  1592.     thd->insert_id(last_insert_id); // For binary log
  1593.   /* Write to binlog before commiting transaction */
  1594.   mysql_update_log.write(thd,thd->query,thd->query_length);
  1595.   if (mysql_bin_log.is_open())
  1596.   {
  1597.     if (!error)
  1598.       thd->clear_error();
  1599.     Query_log_event qinfo(thd, thd->query, thd->query_length,
  1600.   table->file->has_transactions(), FALSE);
  1601.     mysql_bin_log.write(&qinfo);
  1602.   }
  1603.   if ((error2=ha_autocommit_or_rollback(thd,error)) && ! error)
  1604.     error=error2;
  1605.   if (error)
  1606.   {
  1607.     table->file->print_error(error,MYF(0));
  1608.     //TODO error should be sent at the query processing end
  1609.     ::send_error(thd);
  1610.     DBUG_RETURN(1);
  1611.   }
  1612.   char buff[160];
  1613.   if (info.ignore)
  1614.     sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
  1615.     (ulong) (info.records - info.copied), (ulong) thd->cuted_fields);
  1616.   else
  1617.     sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
  1618.     (ulong) (info.deleted+info.updated), (ulong) thd->cuted_fields);
  1619.   ::send_ok(thd,info.copied+info.deleted+info.updated,last_insert_id,buff);
  1620.   DBUG_RETURN(0);
  1621. }
  1622. /***************************************************************************
  1623.   CREATE TABLE (SELECT) ...
  1624. ***************************************************************************/
  1625. int
  1626. select_create::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
  1627. {
  1628.   DBUG_ENTER("select_create::prepare");
  1629.   unit= u;
  1630.   table= create_table_from_items(thd, create_info, db, name,
  1631.  extra_fields, keys, &values, &lock);
  1632.   if (!table)
  1633.     DBUG_RETURN(-1); // abort() deletes table
  1634.   if (table->fields < values.elements)
  1635.   {
  1636.     my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  1637.                     ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  1638.     MYF(0),1);
  1639.     DBUG_RETURN(-1);
  1640.   }
  1641.   /* First field to copy */
  1642.   field=table->field+table->fields - values.elements;
  1643.   /* Don't set timestamp if used */
  1644.   table->timestamp_field_type= TIMESTAMP_NO_AUTO_SET;
  1645.   table->next_number_field=table->found_next_number_field;
  1646.   restore_record(table,default_values); // Get empty record
  1647.   thd->cuted_fields=0;
  1648.   if (info.ignore ||
  1649.       info.handle_duplicates != DUP_ERROR)
  1650.     table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  1651.   table->file->start_bulk_insert((ha_rows) 0);
  1652.   DBUG_RETURN(0);
  1653. }
  1654. void select_create::store_values(List<Item> &values)
  1655. {
  1656.   fill_record(field, values, 1);
  1657. }
  1658. void select_create::send_error(uint errcode,const char *err)
  1659. {
  1660.   /*
  1661.    Disable binlog, because we "roll back" partial inserts in ::abort
  1662.    by removing the table, even for non-transactional tables.
  1663.   */
  1664.   tmp_disable_binlog(thd);
  1665.   select_insert::send_error(errcode, err);
  1666.   reenable_binlog(thd);
  1667. }
  1668. bool select_create::send_eof()
  1669. {
  1670.   bool tmp=select_insert::send_eof();
  1671.   if (tmp)
  1672.     abort();
  1673.   else
  1674.   {
  1675.     table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1676.     VOID(pthread_mutex_lock(&LOCK_open));
  1677.     mysql_unlock_tables(thd, lock);
  1678.     /*
  1679.       TODO:
  1680.       Check if we can remove the following two rows.
  1681.       We should be able to just keep the table in the table cache.
  1682.     */
  1683.     if (!table->tmp_table)
  1684.     {
  1685.       ulong version= table->version;
  1686.       hash_delete(&open_cache,(byte*) table);
  1687.       /* Tell threads waiting for refresh that something has happened */
  1688.       if (version != refresh_version)
  1689.         VOID(pthread_cond_broadcast(&COND_refresh));
  1690.     }
  1691.     lock=0;
  1692.     table=0;
  1693.     VOID(pthread_mutex_unlock(&LOCK_open));
  1694.   }
  1695.   return tmp;
  1696. }
  1697. void select_create::abort()
  1698. {
  1699.   VOID(pthread_mutex_lock(&LOCK_open));
  1700.   if (lock)
  1701.   {
  1702.     mysql_unlock_tables(thd, lock);
  1703.     lock=0;
  1704.   }
  1705.   if (table)
  1706.   {
  1707.     table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1708.     enum db_type table_type=table->db_type;
  1709.     if (!table->tmp_table)
  1710.     {
  1711.       ulong version= table->version;
  1712.       hash_delete(&open_cache,(byte*) table);
  1713.       if (!create_info->table_existed)
  1714.         quick_rm_table(table_type, db, name);
  1715.       /* Tell threads waiting for refresh that something has happened */
  1716.       if (version != refresh_version)
  1717.         VOID(pthread_cond_broadcast(&COND_refresh));
  1718.     }
  1719.     else if (!create_info->table_existed)
  1720.       close_temporary_table(thd, db, name);
  1721.     table=0;
  1722.   }
  1723.   VOID(pthread_mutex_unlock(&LOCK_open));
  1724. }
  1725. /*****************************************************************************
  1726.   Instansiate templates
  1727. *****************************************************************************/
  1728. #ifdef __GNUC__
  1729. template class List_iterator_fast<List_item>;
  1730. #ifndef EMBEDDED_LIBRARY
  1731. template class I_List<delayed_insert>;
  1732. template class I_List_iterator<delayed_insert>;
  1733. template class I_List<delayed_row>;
  1734. #endif /* EMBEDDED_LIBRARY */
  1735. #endif /* __GNUC__ */