sql_insert.cc
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:38k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* Insert of records */
  17. #include "mysql_priv.h"
  18. #include "sql_acl.h"
  19. static int check_null_fields(THD *thd,TABLE *entry);
  20. static TABLE *delayed_get_table(THD *thd,TABLE_LIST *table_list);
  21. static int write_delayed(THD *thd,TABLE *table, enum_duplicates dup,
  22.  char *query, uint query_length, bool log_on);
  23. static void end_delayed_insert(THD *thd);
  24. static pthread_handler_decl(handle_delayed_insert,arg);
  25. static void unlink_blobs(register TABLE *table);
  26. /* Define to force use of my_malloc() if the allocated memory block is big */
  27. #ifndef HAVE_ALLOCA
  28. #define my_safe_alloca(size, min_length) my_alloca(size)
  29. #define my_safe_afree(ptr, size, min_length) my_afree(ptr)
  30. #else
  31. #define my_safe_alloca(size, min_length) ((size <= min_length) ? my_alloca(size) : my_malloc(size,MYF(0)))
  32. #define my_safe_afree(ptr, size, min_length) if (size > min_length) my_free(ptr,MYF(0))
  33. #endif
  34. /*
  35.   Check if insert fields are correct
  36.   Resets form->time_stamp if a timestamp value is set
  37. */
  38. static int
  39. check_insert_fields(THD *thd,TABLE *table,List<Item> &fields,
  40.     List<Item> &values, ulong counter)
  41. {
  42.   if (fields.elements == 0 && values.elements != 0)
  43.   {
  44.     if (values.elements != table->fields)
  45.     {
  46.       my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  47.       ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  48.       MYF(0),counter);
  49.       return -1;
  50.     }
  51.     if (grant_option &&
  52. check_grant_all_columns(thd,INSERT_ACL,table))
  53.       return -1;
  54.     table->time_stamp=0; // This should be saved
  55.   }
  56.   else
  57.   { // Part field list
  58.     if (fields.elements != values.elements)
  59.     {
  60.       my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  61.       ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  62.       MYF(0),counter);
  63.       return -1;
  64.     }
  65.     TABLE_LIST table_list;
  66.     bzero((char*) &table_list,sizeof(table_list));
  67.     table_list.name=table->table_name;
  68.     table_list.table=table;
  69.     table_list.grant=table->grant;
  70.     thd->dupp_field=0;
  71.     if (setup_fields(thd,&table_list,fields,1,0))
  72.       return -1;
  73.     if (thd->dupp_field)
  74.     {
  75.       my_error(ER_FIELD_SPECIFIED_TWICE,MYF(0), thd->dupp_field->field_name);
  76.       return -1;
  77.     }
  78.     if (table->timestamp_field && // Don't set timestamp if used
  79. table->timestamp_field->query_id == thd->query_id)
  80.       table->time_stamp=0; // This should be saved
  81.   }
  82.  // For the values we need select_priv
  83.   table->grant.want_privilege=(SELECT_ACL & ~table->grant.privilege);
  84.   return 0;
  85. }
  86. int mysql_insert(THD *thd,TABLE_LIST *table_list, List<Item> &fields,
  87.  List<List_item> &values_list,enum_duplicates duplic,
  88.  thr_lock_type lock_type)
  89. {
  90.   int error;
  91.   bool log_on= ((thd->options & OPTION_UPDATE_LOG) ||
  92. !(thd->master_access & PROCESS_ACL));
  93.   bool using_transactions;
  94.   uint value_count;
  95.   uint save_time_stamp;
  96.   ulong counter = 1;
  97.   ulonglong id;
  98.   COPY_INFO info;
  99.   TABLE *table;
  100.   List_iterator<List_item> its(values_list);
  101.   List_item *values;
  102.   char *query=thd->query;
  103.   DBUG_ENTER("mysql_insert");
  104.   /*
  105.     in safe mode or with skip-new change delayed insert to be regular
  106.     if we are told to replace duplicates, the insert cannot be concurrent
  107.     delayed insert changed to regular in slave thread
  108.    */
  109.   if ((lock_type == TL_WRITE_DELAYED &&
  110.        ((specialflag & (SPECIAL_NO_NEW_FUNC | SPECIAL_SAFE_MODE)) ||
  111. thd->slave_thread)) ||
  112.       (lock_type == TL_WRITE_CONCURRENT_INSERT && duplic == DUP_REPLACE))
  113.     lock_type=TL_WRITE;
  114.   if (lock_type == TL_WRITE_DELAYED)
  115.   {
  116.     if (thd->locked_tables)
  117.     {
  118.       if (find_locked_table(thd,
  119.     table_list->db ? table_list->db : thd->db,
  120.     table_list->real_name))
  121.       {
  122. my_printf_error(ER_DELAYED_INSERT_TABLE_LOCKED,
  123. ER(ER_DELAYED_INSERT_TABLE_LOCKED),
  124. MYF(0), table_list->real_name);
  125. DBUG_RETURN(-1);
  126.       }
  127.     }
  128.     if (!(table = delayed_get_table(thd,table_list)) && !thd->fatal_error)
  129.       table = open_ltable(thd,table_list,lock_type=thd->update_lock_default);
  130.   }
  131.   else
  132.     table = open_ltable(thd,table_list,lock_type);
  133.   if (!table)
  134.     DBUG_RETURN(-1);
  135.   thd->proc_info="init";
  136.   thd->used_tables=0;
  137.   save_time_stamp=table->time_stamp;
  138.   values= its++;
  139.   if (check_insert_fields(thd,table,fields,*values,1) ||
  140.       setup_fields(thd,table_list,*values,0,0))
  141.   {
  142.     table->time_stamp=save_time_stamp;
  143.     goto abort;
  144.   }
  145.   value_count= values->elements;
  146.   while ((values = its++))
  147.   {
  148.     counter++;
  149.     if (values->elements != value_count)
  150.     {
  151.       my_printf_error(ER_WRONG_VALUE_COUNT_ON_ROW,
  152.       ER(ER_WRONG_VALUE_COUNT_ON_ROW),
  153.       MYF(0),counter);
  154.       table->time_stamp=save_time_stamp;
  155.       goto abort;
  156.     }
  157.     if (setup_fields(thd,table_list,*values,0,0))
  158.     {
  159.       table->time_stamp=save_time_stamp;
  160.       goto abort;
  161.     }
  162.   }
  163.   its.rewind ();
  164.   /*
  165.   ** Fill in the given fields and dump it to the table file
  166.   */
  167.   info.records=info.deleted=info.copied=0;
  168.   info.handle_duplicates=duplic;
  169.   // Don't count warnings for simple inserts
  170.   if (values_list.elements > 1 || (thd->options & OPTION_WARNINGS))
  171.     thd->count_cuted_fields = 1;
  172.   thd->cuted_fields = 0L;
  173.   table->next_number_field=table->found_next_number_field;
  174.   error=0;
  175.   id=0;
  176.   thd->proc_info="update";
  177.   if (duplic == DUP_IGNORE || duplic == DUP_REPLACE)
  178.     table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  179.   while ((values = its++))
  180.   {
  181.     if (fields.elements || !value_count)
  182.     {
  183.       restore_record(table,2); // Get empty record
  184.       if (fill_record(fields,*values) || check_null_fields(thd,table))
  185.       {
  186. if (values_list.elements != 1)
  187. {
  188.   info.records++;
  189.   continue;
  190. }
  191. error=1;
  192. break;
  193.       }
  194.     }
  195.     else
  196.     {
  197.       if (thd->used_tables) // Column used in values()
  198. restore_record(table,2); // Get empty record
  199.       else
  200. table->record[0][0]=table->record[2][0]; // Fix delete marker
  201.       if (fill_record(table->field,*values))
  202.       {
  203. if (values_list.elements != 1)
  204. {
  205.   info.records++;
  206.   continue;
  207. }
  208. error=1;
  209. break;
  210.       }
  211.     }
  212.     if (lock_type == TL_WRITE_DELAYED && ! table->file->has_transactions())
  213.     {
  214.       error=write_delayed(thd,table,duplic,query, thd->query_length, log_on);
  215.       query=0;
  216.     }
  217.     else
  218.       error=write_record(table,&info);
  219.     if (error)
  220.       break;
  221.     /*
  222.       If auto_increment values are used, save the first one
  223.        for LAST_INSERT_ID() and for the update log.
  224.        We can't use insert_id() as we don't want to touch the
  225.        last_insert_id_used flag.
  226.     */
  227.     if (! id && thd->insert_id_used)
  228.     { // Get auto increment value
  229.       id= thd->last_insert_id;
  230.     }
  231.   }
  232.   if (lock_type == TL_WRITE_DELAYED)
  233.   {
  234.     if (!error)
  235.     {
  236.       id=0; // No auto_increment id
  237.       info.copied=values_list.elements;
  238.       end_delayed_insert(thd);
  239.     }
  240.   }
  241.   else
  242.   {
  243.     if (id && values_list.elements != 1)
  244.       thd->insert_id(id); // For update log
  245.     else if (table->next_number_field)
  246.       id=table->next_number_field->val_int(); // Return auto_increment value
  247.     using_transactions=table->file->has_transactions();
  248.     if ((info.copied || info.deleted) && (error <= 0 || !using_transactions))
  249.     {
  250.       mysql_update_log.write(thd, thd->query, thd->query_length);
  251.       if (mysql_bin_log.is_open())
  252.       {
  253. Query_log_event qinfo(thd, thd->query, using_transactions);
  254. if (mysql_bin_log.write(&qinfo) && using_transactions)
  255.   error=1;
  256.       }
  257.       if (!using_transactions)
  258. thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
  259.     }
  260.     if (using_transactions)
  261.       error=ha_autocommit_or_rollback(thd,error);
  262.     if (thd->lock)
  263.     {
  264.       mysql_unlock_tables(thd, thd->lock);
  265.       thd->lock=0;
  266.     }
  267.   }
  268.   thd->proc_info="end";
  269.   table->time_stamp=save_time_stamp; // Restore auto timestamp ptr
  270.   table->next_number_field=0;
  271.   thd->count_cuted_fields=0;
  272.   thd->next_insert_id=0; // Reset this if wrongly used
  273.   if (duplic == DUP_IGNORE || duplic == DUP_REPLACE)
  274.     table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  275.   if (error)
  276.     goto abort;
  277.   if (values_list.elements == 1 && (!(thd->options & OPTION_WARNINGS) ||
  278.     !thd->cuted_fields))
  279.     send_ok(&thd->net,info.copied+info.deleted,id);
  280.   else
  281.   {
  282.     char buff[160];
  283.     if (duplic == DUP_IGNORE)
  284.       sprintf(buff,ER(ER_INSERT_INFO),info.records,info.records-info.copied,
  285.       thd->cuted_fields);
  286.     else
  287.       sprintf(buff,ER(ER_INSERT_INFO),info.records,info.deleted,
  288.       thd->cuted_fields);
  289.     ::send_ok(&thd->net,info.copied+info.deleted,0L,buff);
  290.   }
  291.   DBUG_RETURN(0);
  292. abort:
  293.   if (lock_type == TL_WRITE_DELAYED)
  294.     end_delayed_insert(thd);
  295.   DBUG_RETURN(-1);
  296. }
  297. /* Check if there is more uniq keys after field */
  298. static int last_uniq_key(TABLE *table,uint keynr)
  299. {
  300.   while (++keynr < table->keys)
  301.     if (table->key_info[keynr].flags & HA_NOSAME)
  302.       return 0;
  303.   return 1;
  304. }
  305. /*
  306. ** Write a record to table with optional deleting of conflicting records
  307. */
  308. int write_record(TABLE *table,COPY_INFO *info)
  309. {
  310.   int error;
  311.   char *key=0;
  312.  
  313.   info->records++;
  314.   if (info->handle_duplicates == DUP_REPLACE)
  315.   {
  316.     while ((error=table->file->write_row(table->record[0])))
  317.     {
  318.       if (error != HA_WRITE_SKIPP)
  319. goto err;
  320.       uint key_nr;
  321.       if ((int) (key_nr = table->file->get_dup_key(error)) < 0)
  322.       {
  323. error=HA_WRITE_SKIPP; /* Database can't find key */
  324. goto err;
  325.       }
  326.       /*
  327. Don't allow REPLACE to replace a row when a auto_increment column
  328. was used.  This ensures that we don't get a problem when the
  329. whole range of the key has been used.
  330.       */
  331.       if (table->next_number_field && key_nr == table->next_number_index &&
  332.   table->file->auto_increment_column_changed)
  333. goto err;
  334.       if (table->file->option_flag() & HA_DUPP_POS)
  335.       {
  336. if (table->file->rnd_pos(table->record[1],table->file->dupp_ref))
  337.   goto err;
  338.       }
  339.       else
  340.       {
  341. if (table->file->extra(HA_EXTRA_FLUSH_CACHE)) /* Not neaded with NISAM */
  342. {
  343.   error=my_errno;
  344.   goto err;
  345. }
  346. if (!key)
  347. {
  348.   if (!(key=(char*) my_safe_alloca(table->max_unique_length,
  349.    MAX_KEY_LENGTH)))
  350.   {
  351.     error=ENOMEM;
  352.     goto err;
  353.   }
  354. }
  355. key_copy((byte*) key,table,key_nr,0);
  356. if ((error=(table->file->index_read_idx(table->record[1],key_nr,
  357. (byte*) key,
  358. table->key_info[key_nr].key_length,
  359. HA_READ_KEY_EXACT))))
  360.   goto err;
  361.       }
  362.       if (last_uniq_key(table,key_nr))
  363.       {
  364. if ((error=table->file->update_row(table->record[1],table->record[0])))
  365.   goto err;
  366. info->deleted++;
  367. break; /* Update logfile and count */
  368.       }
  369.       else if ((error=table->file->delete_row(table->record[1])))
  370. goto err;
  371.       info->deleted++;
  372.     }
  373.     info->copied++;
  374.   }
  375.   else if ((error=table->file->write_row(table->record[0])))
  376.   {
  377.     if (info->handle_duplicates != DUP_IGNORE ||
  378. (error != HA_ERR_FOUND_DUPP_KEY && error != HA_ERR_FOUND_DUPP_UNIQUE))
  379.       goto err;
  380.   }
  381.   else
  382.     info->copied++;
  383.   if (key)
  384.     my_safe_afree(key,table->max_unique_length,MAX_KEY_LENGTH);
  385.   return 0;
  386. err:
  387.   if (key)
  388.     my_afree(key);
  389.   table->file->print_error(error,MYF(0));
  390.   return 1;
  391. }
  392. /******************************************************************************
  393. Check that all fields with arn't null_fields are used
  394. if DONT_USE_DEFAULT_FIELDS isn't defined use default value for not
  395. set fields.
  396. ******************************************************************************/
  397. static int check_null_fields(THD *thd __attribute__((unused)),
  398.      TABLE *entry __attribute__((unused)))
  399. {
  400. #ifdef DONT_USE_DEFAULT_FIELDS
  401.   for (Field **field=entry->field ; *field ; field++)
  402.   {
  403.     if ((*field)->query_id != thd->query_id && !(*field)->maybe_null() &&
  404. *field != entry->timestamp_field &&
  405. *field != entry->next_number_field)
  406.     {
  407.       my_printf_error(ER_BAD_NULL_ERROR, ER(ER_BAD_NULL_ERROR),MYF(0),
  408.       (*field)->field_name);
  409.       return 1;
  410.     }
  411.   }
  412. #endif
  413.   return 0;
  414. }
  415. /*****************************************************************************
  416. ** Handling of delayed inserts
  417. **
  418. ** A thread is created for each table that one uses with the DELAYED
  419. ** attribute.
  420. *****************************************************************************/
  421. class delayed_row :public ilink {
  422. public:
  423.   char *record,*query;
  424.   enum_duplicates dup;
  425.   time_t start_time;
  426.   bool query_start_used,last_insert_id_used,insert_id_used,log_query;
  427.   ulonglong last_insert_id;
  428.   ulong time_stamp;
  429.   uint query_length;
  430.   delayed_row(enum_duplicates dup_arg, bool log_query_arg)
  431.     :record(0),query(0),dup(dup_arg),log_query(log_query_arg) {}
  432.   ~delayed_row()
  433.   {
  434.     x_free(record);
  435.   }
  436. };
  437. class delayed_insert :public ilink {
  438.   uint locks_in_memory;
  439. public:
  440.   THD thd;
  441.   TABLE *table;
  442.   pthread_mutex_t mutex;
  443.   pthread_cond_t cond,cond_client;
  444.   volatile uint tables_in_use,stacked_inserts;
  445.   volatile bool status,dead;
  446.   COPY_INFO info;
  447.   I_List<delayed_row> rows;
  448.   uint group_count;
  449.   TABLE_LIST *table_list; // Argument
  450.   delayed_insert()
  451.     :locks_in_memory(0),
  452.      table(0),tables_in_use(0),stacked_inserts(0), status(0), dead(0),
  453.      group_count(0)
  454.   {
  455.     thd.user=thd.priv_user=(char*) delayed_user;
  456.     thd.host=(char*) localhost;
  457.     thd.current_tablenr=0;
  458.     thd.version=refresh_version;
  459.     thd.command=COM_DELAYED_INSERT;
  460.     bzero((char*) &thd.net,sizeof(thd.net)); // Safety
  461.     thd.system_thread=1;
  462.     bzero((char*) &info,sizeof(info));
  463.     pthread_mutex_init(&mutex,NULL);
  464.     pthread_cond_init(&cond,NULL);
  465.     pthread_cond_init(&cond_client,NULL);
  466.     VOID(pthread_mutex_lock(&LOCK_thread_count));
  467.     delayed_insert_threads++;
  468.     VOID(pthread_mutex_unlock(&LOCK_thread_count));
  469.   }
  470.   ~delayed_insert()
  471.   {
  472.     /* The following is not really neaded, but just for safety */
  473.     delayed_row *row;
  474.     while ((row=rows.get()))
  475.       delete row;
  476.     pthread_mutex_destroy(&mutex);
  477.     if (table)
  478.       close_thread_tables(&thd);
  479.     VOID(pthread_mutex_lock(&LOCK_thread_count));
  480.     thd.unlink(); // Must be unlinked under lock
  481.     x_free(thd.query);
  482.     thd.user=thd.host=0;
  483.     thread_count--;
  484.     delayed_insert_threads--;
  485.     VOID(pthread_cond_broadcast(&COND_thread_count)); /* Tell main we are ready */
  486.     VOID(pthread_mutex_unlock(&LOCK_thread_count));
  487.   }
  488.   /* The following is for checking when we can delete ourselves */
  489.   inline void lock()
  490.   {
  491.     locks_in_memory++; // Assume LOCK_delay_insert
  492.   }
  493.   void unlock()
  494.   {
  495.     pthread_mutex_lock(&LOCK_delayed_insert);
  496.     if (!--locks_in_memory)
  497.     {
  498.       pthread_mutex_lock(&mutex);
  499.       if (thd.killed && ! stacked_inserts && ! tables_in_use)
  500.       {
  501. pthread_cond_signal(&cond);
  502. status=1;
  503.       }
  504.       pthread_mutex_unlock(&mutex);
  505.     }
  506.     pthread_mutex_unlock(&LOCK_delayed_insert);
  507.   }
  508.   inline uint lock_count() { return locks_in_memory; }
  509.   TABLE* get_local_table(THD* client_thd);
  510.   bool handle_inserts(void);
  511. };
  512. I_List<delayed_insert> delayed_threads;
  513. delayed_insert *find_handler(THD *thd, TABLE_LIST *table_list)
  514. {
  515.   thd->proc_info="waiting for delay_list";
  516.   pthread_mutex_lock(&LOCK_delayed_insert); // Protect master list
  517.   I_List_iterator<delayed_insert> it(delayed_threads);
  518.   delayed_insert *tmp;
  519.   while ((tmp=it++))
  520.   {
  521.     if (!strcmp(tmp->thd.db,table_list->db) &&
  522. !strcmp(table_list->real_name,tmp->table->real_name))
  523.     {
  524.       tmp->lock();
  525.       break;
  526.     }
  527.   }
  528.   pthread_mutex_unlock(&LOCK_delayed_insert); // For unlink from list
  529.   return tmp;
  530. }
  531. static TABLE *delayed_get_table(THD *thd,TABLE_LIST *table_list)
  532. {
  533.   int error;
  534.   delayed_insert *tmp;
  535.   DBUG_ENTER("delayed_get_table");
  536.   if (!table_list->db)
  537.     table_list->db=thd->db;
  538.   /* no match; create a new thread to handle the table */
  539.   if (!(tmp=find_handler(thd,table_list)))
  540.   {
  541.     thd->proc_info="Creating delayed handler";
  542.     pthread_mutex_lock(&LOCK_delayed_create);
  543.     if (!(tmp=find_handler(thd,table_list))) // Was just created
  544.     {
  545.       if (!(tmp=new delayed_insert()))
  546.       {
  547. thd->fatal_error=1;
  548. my_error(ER_OUTOFMEMORY,MYF(0),sizeof(delayed_insert));
  549. pthread_mutex_unlock(&LOCK_delayed_create);
  550. DBUG_RETURN(0);
  551.       }
  552.       pthread_mutex_lock(&LOCK_thread_count);
  553.       thread_count++;
  554.       pthread_mutex_unlock(&LOCK_thread_count);
  555.       if (!(tmp->thd.db=my_strdup(table_list->db,MYF(MY_WME))) ||
  556.   !(tmp->thd.query=my_strdup(table_list->real_name,MYF(MY_WME))))
  557.       {
  558. delete tmp;
  559. thd->fatal_error=1;
  560. my_error(ER_OUT_OF_RESOURCES,MYF(0));
  561. pthread_mutex_unlock(&LOCK_delayed_create);
  562. DBUG_RETURN(0);
  563.       }
  564.       tmp->table_list=table_list; // Needed to open table
  565.       tmp->lock();
  566.       pthread_mutex_lock(&tmp->mutex);
  567.       if ((error=pthread_create(&tmp->thd.real_id,&connection_attrib,
  568. handle_delayed_insert,(void*) tmp)))
  569.       {
  570. DBUG_PRINT("error",
  571.    ("Can't create thread to handle delayed insert (error %d)",
  572.     error));
  573. pthread_mutex_unlock(&tmp->mutex);
  574. tmp->unlock();
  575. delete tmp;
  576. thd->fatal_error=1;
  577. pthread_mutex_unlock(&LOCK_delayed_create);
  578. net_printf(&thd->net,ER_CANT_CREATE_THREAD,error);
  579. DBUG_RETURN(0);
  580.       }
  581.       /* Wait until table is open */
  582.       thd->proc_info="waiting for handler open";
  583.       while (!tmp->thd.killed && !tmp->table && !thd->killed)
  584.       {
  585. pthread_cond_wait(&tmp->cond_client,&tmp->mutex);
  586.       }
  587.       pthread_mutex_unlock(&tmp->mutex);
  588.       thd->proc_info="got old table";
  589.       if (tmp->thd.killed)
  590.       {
  591. if (tmp->thd.fatal_error)
  592. {
  593.   /* Copy error message and abort */
  594.   thd->fatal_error=1;
  595.   strmov(thd->net.last_error,tmp->thd.net.last_error);
  596.   thd->net.last_errno=thd->net.last_errno;
  597. }
  598. tmp->unlock();
  599. pthread_mutex_unlock(&LOCK_delayed_create);
  600. DBUG_RETURN(0); // Continue with normal insert
  601.       }
  602.       if (thd->killed)
  603.       {
  604. tmp->unlock();
  605. pthread_mutex_unlock(&LOCK_delayed_create);
  606. DBUG_RETURN(0);
  607.       }
  608.     }
  609.     pthread_mutex_unlock(&LOCK_delayed_create);
  610.   }
  611.   pthread_mutex_lock(&tmp->mutex);
  612.   TABLE *table=tmp->get_local_table(thd);
  613.   pthread_mutex_unlock(&tmp->mutex);
  614.   tmp->unlock();
  615.   if (table)
  616.     thd->di=tmp;
  617.   else if (tmp->thd.fatal_error)
  618.     thd->fatal_error=1;
  619.   DBUG_RETURN((table_list->table=table));
  620. }
  621. /*
  622.   As we can't let many threads modify the same TABLE structure, we create
  623.   an own structure for each tread.  This includes a row buffer to save the
  624.   column values and new fields that points to the new row buffer.
  625.   The memory is allocated in the client thread and is freed automaticly.
  626. */
  627. TABLE *delayed_insert::get_local_table(THD* client_thd)
  628. {
  629.   my_ptrdiff_t adjust_ptrs;
  630.   Field **field,**org_field, *found_next_number_field;
  631.   TABLE *copy;
  632.   /* First request insert thread to get a lock */
  633.   status=1;
  634.   tables_in_use++;
  635.   if (!thd.lock) // Table is not locked
  636.   {
  637.     client_thd->proc_info="waiting for handler lock";
  638.     pthread_cond_signal(&cond); // Tell handler to lock table
  639.     while (!dead && !thd.lock && ! client_thd->killed)
  640.     {
  641.       pthread_cond_wait(&cond_client,&mutex);
  642.     }
  643.     client_thd->proc_info="got handler lock";
  644.     if (client_thd->killed)
  645.       goto error;
  646.     if (dead)
  647.     {
  648.       strmov(client_thd->net.last_error,thd.net.last_error);
  649.       client_thd->net.last_errno=thd.net.last_errno;
  650.       goto error;
  651.     }
  652.   }
  653.   client_thd->proc_info="allocating local table";
  654.   copy= (TABLE*) sql_alloc(sizeof(*copy)+
  655.    (table->fields+1)*sizeof(Field**)+
  656.    table->reclength);
  657.   if (!copy)
  658.     goto error;
  659.   *copy= *table;
  660.   bzero((char*) &copy->name_hash,sizeof(copy->name_hash)); // No name hashing
  661.   /* We don't need to change the file handler here */
  662.   field=copy->field=(Field**) (copy+1);
  663.   copy->record[0]=(byte*) (field+table->fields+1);
  664.   memcpy((char*) copy->record[0],(char*) table->record[0],table->reclength);
  665.   /* Make a copy of all fields */
  666.   adjust_ptrs=PTR_BYTE_DIFF(copy->record[0],table->record[0]);
  667.   found_next_number_field=table->found_next_number_field;
  668.   for (org_field=table->field ; *org_field ; org_field++,field++)
  669.   {
  670.     if (!(*field= (*org_field)->new_field(copy)))
  671.       return 0;
  672.     (*field)->move_field(adjust_ptrs); // Point at copy->record[0]
  673.     if (*org_field == found_next_number_field)
  674.       (*field)->table->found_next_number_field= *field;
  675.   }
  676.   *field=0;
  677.   /* Adjust timestamp */
  678.   if (table->timestamp_field)
  679.   {
  680.     /* Restore offset as this may have been reset in handle_inserts */
  681.     copy->time_stamp=table->timestamp_field->offset()+1;
  682.     copy->timestamp_field=
  683.       (Field_timestamp*) copy->field[table->timestamp_field_offset];
  684.   }
  685.   /* _rowid is not used with delayed insert */
  686.   copy->rowid_field=0;
  687.   return copy;
  688.   /* Got fatal error */
  689.  error:
  690.   tables_in_use--;
  691.   status=1;
  692.   pthread_cond_signal(&cond); // Inform thread about abort
  693.   return 0;
  694. }
  695. /* Put a question in queue */
  696. static int write_delayed(THD *thd,TABLE *table,enum_duplicates duplic,
  697.  char *query, uint query_length, bool log_on)
  698. {
  699.   delayed_row *row=0;
  700.   delayed_insert *di=thd->di;
  701.   DBUG_ENTER("write_delayed");
  702.   thd->proc_info="waiting for handler insert";
  703.   pthread_mutex_lock(&di->mutex);
  704.   while (di->stacked_inserts >= delayed_queue_size && !thd->killed)
  705.     pthread_cond_wait(&di->cond_client,&di->mutex);
  706.   thd->proc_info="storing row into queue";
  707.   if (thd->killed || !(row= new delayed_row(duplic, log_on)))
  708.     goto err;
  709.   if (!query)
  710.     query_length=0;
  711.   if (!(row->record= (char*) my_malloc(table->reclength+query_length+1,
  712.        MYF(MY_WME))))
  713.     goto err;
  714.   memcpy(row->record,table->record[0],table->reclength);
  715.   if (query_length)
  716.   {
  717.     row->query=row->record+table->reclength;
  718.     memcpy(row->query,query,query_length+1);
  719.   }
  720.   row->query_length= query_length;
  721.   row->start_time= thd->start_time;
  722.   row->query_start_used= thd->query_start_used;
  723.   row->last_insert_id_used= thd->last_insert_id_used;
  724.   row->insert_id_used= thd->insert_id_used;
  725.   row->last_insert_id= thd->last_insert_id;
  726.   row->time_stamp= table->time_stamp;
  727.   di->rows.push_back(row);
  728.   di->stacked_inserts++;
  729.   di->status=1;
  730.   if (table->blob_fields)
  731.     unlink_blobs(table);
  732.   pthread_cond_signal(&di->cond);
  733.   thread_safe_increment(delayed_rows_in_use,&LOCK_delayed_status);
  734.   pthread_mutex_unlock(&di->mutex);
  735.   DBUG_RETURN(0);
  736.  err:
  737.   delete row;
  738.   pthread_mutex_unlock(&di->mutex);
  739.   DBUG_RETURN(1);
  740. }
  741. static void end_delayed_insert(THD *thd)
  742. {
  743.   DBUG_ENTER("end_delayed_insert");
  744.   delayed_insert *di=thd->di;
  745.   pthread_mutex_lock(&di->mutex);
  746.   DBUG_PRINT("info",("tables in use: %d",di->tables_in_use));
  747.   if (!--di->tables_in_use || di->thd.killed)
  748.   { // Unlock table
  749.     di->status=1;
  750.     pthread_cond_signal(&di->cond);
  751.   }
  752.   pthread_mutex_unlock(&di->mutex);
  753.   DBUG_VOID_RETURN;
  754. }
  755. /* We kill all delayed threads when doing flush-tables */
  756. void kill_delayed_threads(void)
  757. {
  758.   VOID(pthread_mutex_lock(&LOCK_delayed_insert)); // For unlink from list
  759.   I_List_iterator<delayed_insert> it(delayed_threads);
  760.   delayed_insert *tmp;
  761.   while ((tmp=it++))
  762.   {
  763.     pthread_mutex_lock(&tmp->mutex);
  764.     tmp->thd.killed=1;
  765.     if (tmp->thd.mysys_var)
  766.     {
  767.       pthread_mutex_lock(&tmp->thd.mysys_var->mutex);
  768.       if (tmp->thd.mysys_var->current_mutex)
  769.       {
  770. if (&tmp->mutex != tmp->thd.mysys_var->current_mutex)
  771.   pthread_mutex_lock(tmp->thd.mysys_var->current_mutex);
  772. pthread_cond_broadcast(tmp->thd.mysys_var->current_cond);
  773. if (&tmp->mutex != tmp->thd.mysys_var->current_mutex)
  774.   pthread_mutex_unlock(tmp->thd.mysys_var->current_mutex);
  775.       }
  776.       pthread_mutex_unlock(&tmp->thd.mysys_var->mutex);
  777.     }
  778.     pthread_mutex_unlock(&tmp->mutex);
  779.   }
  780.   VOID(pthread_mutex_unlock(&LOCK_delayed_insert)); // For unlink from list
  781. }
  782. /*
  783.  * Create a new delayed insert thread
  784. */
  785. static pthread_handler_decl(handle_delayed_insert,arg)
  786. {
  787.   delayed_insert *di=(delayed_insert*) arg;
  788.   THD *thd= &di->thd;
  789.   pthread_detach_this_thread();
  790.   /* Add thread to THD list so that's it's visible in 'show processlist' */
  791.   pthread_mutex_lock(&LOCK_thread_count);
  792.   thd->thread_id=thread_id++;
  793.   threads.append(thd);
  794.   pthread_mutex_unlock(&LOCK_thread_count);
  795.   pthread_mutex_lock(&di->mutex);
  796. #ifndef __WIN__ /* Win32 calls this in pthread_create */
  797.   if (my_thread_init())
  798.   {
  799.     strmov(thd->net.last_error,ER(thd->net.last_errno=ER_OUT_OF_RESOURCES));
  800.     goto end;
  801.   }
  802. #endif
  803.   DBUG_ENTER("handle_delayed_insert");
  804.   if (init_thr_lock() ||
  805.       my_pthread_setspecific_ptr(THR_THD,  thd) ||
  806.       my_pthread_setspecific_ptr(THR_NET,  &thd->net))
  807.   {
  808.     strmov(thd->net.last_error,ER(thd->net.last_errno=ER_OUT_OF_RESOURCES));
  809.     goto end;
  810.   }
  811.   thd->mysys_var=my_thread_var;
  812.   thd->dbug_thread_id=my_thread_id();
  813. #ifndef __WIN__
  814.   sigset_t set;
  815.   VOID(sigemptyset(&set)); // Get mask in use
  816.   VOID(pthread_sigmask(SIG_UNBLOCK,&set,&thd->block_signals));
  817. #endif
  818.   /* open table */
  819.   if (!(di->table=open_ltable(thd,di->table_list,TL_WRITE_DELAYED)))
  820.   {
  821.     thd->fatal_error=1; // Abort waiting inserts
  822.     goto end;
  823.   }
  824.   di->table->copy_blobs=1;
  825.   /* One can now use this */
  826.   pthread_mutex_lock(&LOCK_delayed_insert);
  827.   delayed_threads.append(di);
  828.   pthread_mutex_unlock(&LOCK_delayed_insert);
  829.   /* Tell client that the thread is initialized */
  830.   pthread_cond_signal(&di->cond_client);
  831.   /* Now wait until we get an insert or lock to handle */
  832.   /* We will not abort as long as a client thread uses this thread */
  833.   for (;;)
  834.   {
  835.     if (thd->killed)
  836.     {
  837.       uint lock_count;
  838.       /*
  839. Remove this from delay insert list so that no one can request a
  840. table from this
  841.       */
  842.       pthread_mutex_unlock(&di->mutex);
  843.       pthread_mutex_lock(&LOCK_delayed_insert);
  844.       di->unlink();
  845.       lock_count=di->lock_count();
  846.       pthread_mutex_unlock(&LOCK_delayed_insert);
  847.       pthread_mutex_lock(&di->mutex);
  848.       if (!lock_count && !di->tables_in_use && !di->stacked_inserts)
  849. break; // Time to die
  850.     }
  851.     if (!di->status && !di->stacked_inserts)
  852.     {
  853.       struct timespec abstime;
  854. #if defined(HAVE_TIMESPEC_TS_SEC)
  855.       abstime.ts_sec=time((time_t*) 0)+(time_t) delayed_insert_timeout;
  856.       abstime.ts_nsec=0;
  857. #elif defined(__WIN__)
  858.       abstime.tv_sec=time((time_t*) 0)+(time_t) delayed_insert_timeout;
  859.       abstime.tv_nsec=0;
  860. #else
  861.       struct timeval tv;
  862.       gettimeofday(&tv,0);
  863.       abstime.tv_sec=tv.tv_sec+(time_t) delayed_insert_timeout;
  864.       abstime.tv_nsec=tv.tv_usec*1000;
  865. #endif
  866.       /* Information for pthread_kill */
  867.       pthread_mutex_lock(&di->thd.mysys_var->mutex);
  868.       di->thd.mysys_var->current_mutex= &di->mutex;
  869.       di->thd.mysys_var->current_cond= &di->cond;
  870.       pthread_mutex_unlock(&di->thd.mysys_var->mutex);
  871.       di->thd.proc_info=0;
  872.       DBUG_PRINT("info",("Waiting for someone to insert rows"));
  873.       for ( ; ;)
  874.       {
  875. int error;
  876. #if (defined(HAVE_BROKEN_COND_TIMEDWAIT) || defined(HAVE_LINUXTHREADS))
  877. error=pthread_cond_wait(&di->cond,&di->mutex);
  878. #else
  879. error=pthread_cond_timedwait(&di->cond,&di->mutex,&abstime);
  880. #ifdef EXTRA_DEBUG
  881. if (error && error != EINTR)
  882. {
  883.   fprintf(stderr, "Got error %d from pthread_cond_timedwaitn",error);
  884.   DBUG_PRINT("error",("Got error %d from pthread_cond_timedwait",
  885.       error));
  886. }
  887. #endif
  888. #endif
  889. if (thd->killed || di->status)
  890.   break;
  891. if (error == ETIME || error == ETIMEDOUT)
  892. {
  893.   thd->killed=1;
  894.   break;
  895. }
  896.       }
  897.       pthread_mutex_lock(&di->thd.mysys_var->mutex);
  898.       di->thd.mysys_var->current_mutex= 0;
  899.       di->thd.mysys_var->current_cond= 0;
  900.       pthread_mutex_unlock(&di->thd.mysys_var->mutex);
  901.     }
  902.     if (di->tables_in_use && ! thd->lock)
  903.     {
  904.       /* request for new delayed insert */
  905.       if (!(thd->lock=mysql_lock_tables(thd,&di->table,1)))
  906.       {
  907. di->dead=thd->killed=1; // Fatal error
  908.       }
  909.       pthread_cond_broadcast(&di->cond_client);
  910.     }
  911.     if (di->stacked_inserts)
  912.     {
  913.       if (di->handle_inserts())
  914.       {
  915. di->dead=thd->killed=1; // Some fatal error
  916.       }
  917.     }
  918.     di->status=0;
  919.     if (!di->stacked_inserts && !di->tables_in_use && thd->lock)
  920.     {
  921.       /* No one is doing a insert delayed;
  922.  Unlock it so that other threads can use it */
  923.       MYSQL_LOCK *lock=thd->lock;
  924.       thd->lock=0;
  925.       pthread_mutex_unlock(&di->mutex);
  926.       mysql_unlock_tables(thd, lock);
  927.       di->group_count=0;
  928.       pthread_mutex_lock(&di->mutex);
  929.     }
  930.     if (di->tables_in_use)
  931.       pthread_cond_broadcast(&di->cond_client); // If waiting clients
  932.   }
  933. end:
  934.   /*
  935.     di should be unlinked from the thread handler list and have no active
  936.     clients
  937.   */
  938.   close_thread_tables(thd); // Free the table
  939.   di->table=0;
  940.   di->dead=thd->killed=1; // If error
  941.   pthread_cond_broadcast(&di->cond_client); // Safety
  942.   pthread_mutex_unlock(&di->mutex);
  943.   pthread_mutex_lock(&LOCK_delayed_create); // Because of delayed_get_table
  944.   pthread_mutex_lock(&LOCK_delayed_insert);
  945.   delete di;
  946.   pthread_mutex_unlock(&LOCK_delayed_insert);
  947.   pthread_mutex_unlock(&LOCK_delayed_create);  
  948.   my_thread_end();
  949.   pthread_exit(0);
  950.   DBUG_RETURN(0);
  951. }
  952. /* Remove pointers from temporary fields to allocated values */
  953. static void unlink_blobs(register TABLE *table)
  954. {
  955.   for (Field **ptr=table->field ; *ptr ; ptr++)
  956.   {
  957.     if ((*ptr)->flags & BLOB_FLAG)
  958.       ((Field_blob *) (*ptr))->clear_temporary();
  959.   }
  960. }
  961. /* Free blobs stored in current row */
  962. static void free_delayed_insert_blobs(register TABLE *table)
  963. {
  964.   for (Field **ptr=table->field ; *ptr ; ptr++)
  965.   {
  966.     if ((*ptr)->flags & BLOB_FLAG)
  967.     {
  968.       char *str;
  969.       ((Field_blob *) (*ptr))->get_ptr(&str);
  970.       my_free(str,MYF(MY_ALLOW_ZERO_PTR));
  971.       ((Field_blob *) (*ptr))->reset();
  972.     }
  973.   }
  974. }
  975. bool delayed_insert::handle_inserts(void)
  976. {
  977.   int error;
  978.   uint max_rows;
  979.   bool using_ignore=0;
  980.   DBUG_ENTER("handle_inserts");
  981.   /* Allow client to insert new rows */
  982.   pthread_mutex_unlock(&mutex);
  983.   table->next_number_field=table->found_next_number_field;
  984.   thd.proc_info="upgrading lock";
  985.   if (thr_upgrade_write_delay_lock(*thd.lock->locks))
  986.   {
  987.     /* This can only happen if thread is killed by shutdown */
  988.     sql_print_error(ER(ER_DELAYED_CANT_CHANGE_LOCK),table->real_name);
  989.     goto err;
  990.   }
  991.   thd.proc_info="insert";
  992.   max_rows=delayed_insert_limit;
  993.   if (thd.killed || table->version != refresh_version)
  994.   {
  995.     thd.killed=1;
  996.     max_rows= ~0; // Do as much as possible
  997.   }
  998.   table->file->extra(HA_EXTRA_WRITE_CACHE);
  999.   pthread_mutex_lock(&mutex);
  1000.   delayed_row *row;
  1001.   while ((row=rows.get()))
  1002.   {
  1003.     stacked_inserts--;
  1004.     pthread_mutex_unlock(&mutex);
  1005.     memcpy(table->record[0],row->record,table->reclength);
  1006.     thd.start_time=row->start_time;
  1007.     thd.query_start_used=row->query_start_used;
  1008.     thd.last_insert_id=row->last_insert_id;
  1009.     thd.last_insert_id_used=row->last_insert_id_used;
  1010.     thd.insert_id_used=row->insert_id_used;
  1011.     table->time_stamp=row->time_stamp;
  1012.     info.handle_duplicates= row->dup;
  1013.     if (info.handle_duplicates == DUP_IGNORE ||
  1014. info.handle_duplicates == DUP_REPLACE)
  1015.     {
  1016.       table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  1017.       using_ignore=1;
  1018.     }
  1019.     thd.net.last_errno = 0; // reset error for binlog
  1020.     if (write_record(table,&info))
  1021.     {
  1022.       info.error++; // Ignore errors
  1023.       pthread_mutex_lock(&LOCK_delayed_status);
  1024.       delayed_insert_errors++;
  1025.       pthread_mutex_unlock(&LOCK_delayed_status);
  1026.       row->log_query = 0;
  1027.     }
  1028.     if (using_ignore)
  1029.     {
  1030.       using_ignore=0;
  1031.       table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1032.     }
  1033.     if (row->query && row->log_query)
  1034.     {
  1035.       mysql_update_log.write(&thd,row->query, row->query_length);
  1036.       if (mysql_bin_log.is_open())
  1037.       {
  1038. thd.query_length = row->query_length;
  1039. Query_log_event qinfo(&thd, row->query);
  1040. mysql_bin_log.write(&qinfo);
  1041.       }
  1042.     }
  1043.     if (table->blob_fields)
  1044.       free_delayed_insert_blobs(table);
  1045.     thread_safe_sub(delayed_rows_in_use,1,&LOCK_delayed_status);
  1046.     thread_safe_increment(delayed_insert_writes,&LOCK_delayed_status);
  1047.     pthread_mutex_lock(&mutex);
  1048.     delete row;
  1049.     /* Let READ clients do something once in a while */
  1050.     if (group_count++ == max_rows)
  1051.     {
  1052.       group_count=0;
  1053.       if (stacked_inserts || tables_in_use) // Let these wait a while
  1054.       {
  1055. if (tables_in_use)
  1056.   pthread_cond_broadcast(&cond_client); // If waiting clients
  1057. thd.proc_info="reschedule";
  1058. pthread_mutex_unlock(&mutex);
  1059. if ((error=table->file->extra(HA_EXTRA_NO_CACHE)))
  1060. {
  1061.   /* This should never happen */
  1062.   table->file->print_error(error,MYF(0));
  1063.   sql_print_error("%s",thd.net.last_error);
  1064.   goto err;
  1065. }
  1066. if (thr_reschedule_write_lock(*thd.lock->locks))
  1067. {
  1068.   /* This should never happen */
  1069.   sql_print_error(ER(ER_DELAYED_CANT_CHANGE_LOCK),table->real_name);
  1070. }
  1071. table->file->extra(HA_EXTRA_WRITE_CACHE);
  1072. pthread_mutex_lock(&mutex);
  1073. thd.proc_info="insert";
  1074.       }
  1075.       if (tables_in_use)
  1076. pthread_cond_broadcast(&cond_client); // If waiting clients
  1077.     }
  1078.   }
  1079.   thd.proc_info=0;
  1080.   table->next_number_field=0;
  1081.   pthread_mutex_unlock(&mutex);
  1082.   if ((error=table->file->extra(HA_EXTRA_NO_CACHE)))
  1083.   { // This shouldn't happen
  1084.     table->file->print_error(error,MYF(0));
  1085.     sql_print_error("%s",thd.net.last_error);
  1086.     goto err;
  1087.   }
  1088.   pthread_mutex_lock(&mutex);
  1089.   DBUG_RETURN(0);
  1090.  err:
  1091.   thread_safe_increment(delayed_insert_errors, &LOCK_delayed_status);
  1092.   pthread_mutex_lock(&mutex);
  1093.   DBUG_RETURN(1);
  1094. }
  1095. /***************************************************************************
  1096. ** store records in INSERT ... SELECT *
  1097. ***************************************************************************/
  1098. int
  1099. select_insert::prepare(List<Item> &values)
  1100. {
  1101.   DBUG_ENTER("select_insert::prepare");
  1102.   save_time_stamp=table->time_stamp;
  1103.   if (check_insert_fields(thd,table,*fields,values,1))
  1104.     DBUG_RETURN(1);
  1105.   restore_record(table,2); // Get empty record
  1106.   table->next_number_field=table->found_next_number_field;
  1107.   thd->count_cuted_fields=1; /* calc cuted fields */
  1108.   thd->cuted_fields=0;
  1109.   if (info.handle_duplicates != DUP_REPLACE)
  1110.     table->file->extra(HA_EXTRA_WRITE_CACHE);
  1111.   if (info.handle_duplicates == DUP_IGNORE ||
  1112.       info.handle_duplicates == DUP_REPLACE)
  1113.     table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  1114.   table->file->deactivate_non_unique_index((ha_rows) 0);
  1115.   DBUG_RETURN(0);
  1116. }
  1117. select_insert::~select_insert()
  1118. {
  1119.   if (table)
  1120.   {
  1121.     if (save_time_stamp)
  1122.       table->time_stamp=save_time_stamp;
  1123.     table->next_number_field=0;
  1124.     table->file->extra(HA_EXTRA_RESET);
  1125.   }
  1126.   thd->count_cuted_fields=0;
  1127. }
  1128. bool select_insert::send_data(List<Item> &values)
  1129. {
  1130.   if (thd->offset_limit)
  1131.   { // using limit offset,count
  1132.     thd->offset_limit--;
  1133.     return 0;
  1134.   }
  1135.   if (fields->elements)
  1136.     fill_record(*fields,values);
  1137.   else
  1138.     fill_record(table->field,values);
  1139.   if (write_record(table,&info))
  1140.     return 1;
  1141.   if (table->next_number_field) // Clear for next record
  1142.   {
  1143.     table->next_number_field->reset();
  1144.     if (! last_insert_id && thd->insert_id_used)
  1145.       last_insert_id=thd->insert_id();
  1146.   }
  1147.   return 0;
  1148. }
  1149. void select_insert::send_error(uint errcode,const char *err)
  1150. {
  1151.   ::send_error(&thd->net,errcode,err);
  1152.   table->file->extra(HA_EXTRA_NO_CACHE);
  1153.   table->file->activate_all_index(thd);
  1154.   ha_rollback(thd);
  1155. }
  1156. bool select_insert::send_eof()
  1157. {
  1158.   int error,error2;
  1159.   if (!(error=table->file->extra(HA_EXTRA_NO_CACHE)))
  1160.     error=table->file->activate_all_index(thd);
  1161.   table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1162.   if ((error2=ha_autocommit_or_rollback(thd,error)) && ! error)
  1163.     error=error2;
  1164.   if (error)
  1165.   {
  1166.     table->file->print_error(error,MYF(0));
  1167.     ::send_error(&thd->net);
  1168.     return 1;
  1169.   }
  1170.   else
  1171.   {
  1172.     char buff[160];
  1173.     if (info.handle_duplicates == DUP_IGNORE)
  1174.       sprintf(buff,ER(ER_INSERT_INFO),info.records,info.records-info.copied,
  1175.       thd->cuted_fields);
  1176.     else
  1177.       sprintf(buff,ER(ER_INSERT_INFO),info.records,info.deleted,
  1178.       thd->cuted_fields);
  1179.     if (last_insert_id)
  1180.       thd->insert_id(last_insert_id); // For update log
  1181.     ::send_ok(&thd->net,info.copied,last_insert_id,buff);
  1182.     mysql_update_log.write(thd,thd->query,thd->query_length);
  1183.     if (mysql_bin_log.is_open())
  1184.     {
  1185.       Query_log_event qinfo(thd, thd->query,
  1186.     table->file->has_transactions());
  1187.       mysql_bin_log.write(&qinfo);
  1188.     }
  1189.     return 0;
  1190.   }
  1191. }
  1192. /***************************************************************************
  1193. ** CREATE TABLE (SELECT) ...
  1194. ***************************************************************************/
  1195. int
  1196. select_create::prepare(List<Item> &values)
  1197. {
  1198.   DBUG_ENTER("select_create::prepare");
  1199.   table=create_table_from_items(thd, create_info, db, name,
  1200. extra_fields, keys, &values, &lock);
  1201.   if (!table)
  1202.     DBUG_RETURN(-1); // abort() deletes table
  1203.   /* First field to copy */
  1204.   field=table->field+table->fields - values.elements;
  1205.   save_time_stamp=table->time_stamp;
  1206.   if (table->timestamp_field) // Don't set timestamp if used
  1207.   {
  1208.     table->timestamp_field->set_time();
  1209.     table->time_stamp=0; // This should be saved
  1210.   }
  1211.   table->next_number_field=table->found_next_number_field;
  1212.   restore_record(table,2); // Get empty record
  1213.   thd->count_cuted_fields=1; // count warnings
  1214.   thd->cuted_fields=0;
  1215.   if (info.handle_duplicates == DUP_IGNORE ||
  1216.       info.handle_duplicates == DUP_REPLACE)
  1217.     table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
  1218.   DBUG_RETURN(0);
  1219. }
  1220. bool select_create::send_data(List<Item> &values)
  1221. {
  1222.   if (thd->offset_limit)
  1223.   { // using limit offset,count
  1224.     thd->offset_limit--;
  1225.     return 0;
  1226.   }
  1227.   fill_record(field,values);
  1228.   if (write_record(table,&info))
  1229.     return 1;
  1230.   if (table->next_number_field) // Clear for next record
  1231.   {
  1232.     table->next_number_field->reset();
  1233.     if (! last_insert_id && thd->insert_id_used)
  1234.       last_insert_id=thd->insert_id();
  1235.   }
  1236.   return 0;
  1237. }
  1238. extern HASH open_cache;
  1239. bool select_create::send_eof()
  1240. {
  1241.   bool tmp=select_insert::send_eof();
  1242.   if (tmp)
  1243.     abort();
  1244.   else
  1245.   {
  1246.     table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1247.     VOID(pthread_mutex_lock(&LOCK_open));
  1248.     mysql_unlock_tables(thd, lock);
  1249.     if (!table->tmp_table)
  1250.       hash_delete(&open_cache,(byte*) table);
  1251.     lock=0; table=0;
  1252.     VOID(pthread_mutex_unlock(&LOCK_open));
  1253.   }
  1254.   return tmp;
  1255. }
  1256. void select_create::abort()
  1257. {
  1258.   VOID(pthread_mutex_lock(&LOCK_open));
  1259.   if (lock)
  1260.   {
  1261.     mysql_unlock_tables(thd, lock);
  1262.     lock=0;
  1263.   }
  1264.   if (table)
  1265.   {
  1266.     table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
  1267.     enum db_type table_type=table->db_type;
  1268.     if (!table->tmp_table)
  1269.       hash_delete(&open_cache,(byte*) table);
  1270.     quick_rm_table(table_type,db,name);
  1271.     table=0;
  1272.   }
  1273.   VOID(pthread_mutex_unlock(&LOCK_open));
  1274. }
  1275. /*****************************************************************************
  1276. ** Instansiate templates
  1277. *****************************************************************************/
  1278. #ifdef __GNUC__
  1279. template class List_iterator<List_item>;
  1280. template class I_List<delayed_insert>;
  1281. template class I_List_iterator<delayed_insert>;
  1282. template class I_List<delayed_row>;
  1283. #endif