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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Delete of records and truncate of tables.
  15.   Multi-table deletes were introduced by Monty and Sinisa
  16. */
  17. #include "mysql_priv.h"
  18. #include "ha_innodb.h"
  19. #include "sql_select.h"
  20. int mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
  21.                  SQL_LIST *order, ha_rows limit, ulong options)
  22. {
  23.   int error;
  24.   TABLE *table;
  25.   SQL_SELECT *select=0;
  26.   READ_RECORD info;
  27.   bool  using_limit=limit != HA_POS_ERROR;
  28.   bool transactional_table, log_delayed, safe_update, const_cond; 
  29.   ha_rows deleted;
  30.   uint usable_index= MAX_KEY;
  31.   DBUG_ENTER("mysql_delete");
  32.   if ((open_and_lock_tables(thd, table_list)))
  33.     DBUG_RETURN(-1);
  34.   table= table_list->table;
  35.   table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK);
  36.   thd->proc_info="init";
  37.   table->map=1;
  38.   if ((error= mysql_prepare_delete(thd, table_list, &conds)))
  39.     DBUG_RETURN(error);
  40.   const_cond= (!conds || conds->const_item());
  41.   safe_update=test(thd->options & OPTION_SAFE_UPDATES);
  42.   if (safe_update && const_cond)
  43.   {
  44.     send_error(thd,ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE);
  45.     DBUG_RETURN(1);
  46.   }
  47.   thd->lex->select_lex.no_error= thd->lex->ignore;
  48.   /* Test if the user wants to delete all rows */
  49.   if (!using_limit && const_cond && (!conds || conds->val_int()) &&
  50.       !(specialflag & (SPECIAL_NO_NEW_FUNC | SPECIAL_SAFE_MODE)))
  51.   {
  52.     deleted= table->file->records;
  53.     if (!(error=table->file->delete_all_rows()))
  54.     {
  55.       error= -1; // ok
  56.       goto cleanup;
  57.     }
  58.     if (error != HA_ERR_WRONG_COMMAND)
  59.     {
  60.       table->file->print_error(error,MYF(0));
  61.       error=0;
  62.       goto cleanup;
  63.     }
  64.     /* Handler didn't support fast delete; Delete rows one by one */
  65.   }
  66.   table->used_keys.clear_all();
  67.   table->quick_keys.clear_all(); // Can't use 'only index'
  68.   select=make_select(table,0,0,conds,&error);
  69.   if (error)
  70.     DBUG_RETURN(-1);
  71.   if ((select && select->check_quick(thd, safe_update, limit)) || !limit)
  72.   {
  73.     delete select;
  74.     free_underlaid_joins(thd, &thd->lex->select_lex);
  75.     send_ok(thd,0L);
  76.     DBUG_RETURN(0); // Nothing to delete
  77.   }
  78.   /* If running in safe sql mode, don't allow updates without keys */
  79.   if (table->quick_keys.is_clear_all())
  80.   {
  81.     thd->server_status|=SERVER_QUERY_NO_INDEX_USED;
  82.     if (safe_update && !using_limit)
  83.     {
  84.       delete select;
  85.       free_underlaid_joins(thd, &thd->lex->select_lex);
  86.       send_error(thd,ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE);
  87.       DBUG_RETURN(1);
  88.     }
  89.   }
  90.   if (options & OPTION_QUICK)
  91.     (void) table->file->extra(HA_EXTRA_QUICK);
  92.   if (order && order->elements)
  93.   {
  94.     uint         length;
  95.     SORT_FIELD  *sortorder;
  96.     TABLE_LIST   tables;
  97.     List<Item>   fields;
  98.     List<Item>   all_fields;
  99.     ha_rows examined_rows;
  100.     bzero((char*) &tables,sizeof(tables));
  101.     tables.table = table;
  102.     tables.alias = table_list->alias;
  103.       if (thd->lex->select_lex.setup_ref_array(thd, order->elements) ||
  104.   setup_order(thd, thd->lex->select_lex.ref_pointer_array, &tables,
  105.                     fields, all_fields, (ORDER*) order->first))
  106.     {
  107.       delete select;
  108.       free_underlaid_joins(thd, &thd->lex->select_lex);
  109.       DBUG_RETURN(-1); // This will force out message
  110.     }
  111.     
  112.     if (!select && limit != HA_POS_ERROR)
  113.       usable_index= get_index_for_order(table, (ORDER*)(order->first), limit);
  114.     if (usable_index == MAX_KEY)
  115.     {
  116.       table->sort.io_cache= (IO_CACHE *) my_malloc(sizeof(IO_CACHE),
  117.                                                    MYF(MY_FAE | MY_ZEROFILL));
  118.     
  119.       if ( !(sortorder=make_unireg_sortorder((ORDER*) order->first, &length)) ||
  120.   (table->sort.found_records = filesort(thd, table, sortorder, length,
  121.    select, HA_POS_ERROR,
  122.    &examined_rows))
  123.   == HA_POS_ERROR)
  124.       {
  125.         delete select;
  126.         free_underlaid_joins(thd, &thd->lex->select_lex);
  127.         DBUG_RETURN(-1); // This will force out message
  128.       }
  129.       /*
  130.         Filesort has already found and selected the rows we want to delete,
  131.         so we don't need the where clause
  132.       */
  133.       delete select;
  134.       select= 0;
  135.     }
  136.   }
  137.   if (usable_index==MAX_KEY)
  138.     init_read_record(&info,thd,table,select,1,1);
  139.   else
  140.     init_read_record_idx(&info, thd, table, 1, usable_index);
  141.   deleted=0L;
  142.   init_ftfuncs(thd, &thd->lex->select_lex, 1);
  143.   thd->proc_info="updating";
  144.   while (!(error=info.read_record(&info)) && !thd->killed &&
  145.  !thd->net.report_error)
  146.   {
  147.     // thd->net.report_error is tested to disallow delete row on error
  148.     if (!(select && select->skip_record())&& !thd->net.report_error )
  149.     {
  150.       if (!(error=table->file->delete_row(table->record[0])))
  151.       {
  152. deleted++;
  153. if (!--limit && using_limit)
  154. {
  155.   error= -1;
  156.   break;
  157. }
  158.       }
  159.       else
  160.       {
  161. table->file->print_error(error,MYF(0));
  162. /*
  163.   In < 4.0.14 we set the error number to 0 here, but that
  164.   was not sensible, because then MySQL would not roll back the
  165.   failed DELETE, and also wrote it to the binlog. For MyISAM
  166.   tables a DELETE probably never should fail (?), but for
  167.   InnoDB it can fail in a FOREIGN KEY error or an
  168.   out-of-tablespace error.
  169. */
  170.   error= 1;
  171. break;
  172.       }
  173.     }
  174.     else
  175.       table->file->unlock_row();  // Row failed selection, release lock on it
  176.   }
  177.   if (thd->killed && !error)
  178.     error= 1; // Aborted
  179.   thd->proc_info="end";
  180.   end_read_record(&info);
  181.   free_io_cache(table); // Will not do any harm
  182.   if (options & OPTION_QUICK)
  183.     (void) table->file->extra(HA_EXTRA_NORMAL);
  184. cleanup:
  185.   /*
  186.     Invalidate the table in the query cache if something changed. This must
  187.     be before binlog writing and ha_autocommit_...
  188.   */
  189.   if (deleted)
  190.   {
  191.     query_cache_invalidate3(thd, table_list, 1);
  192.   }
  193.   delete select;
  194.   transactional_table= table->file->has_transactions();
  195.   log_delayed= (transactional_table || table->tmp_table);
  196.   /*
  197.     We write to the binary log even if we deleted no row, because maybe the
  198.     user is using this command to ensure that a table is clean on master *and
  199.     on slave*. Think of the case of a user having played separately with the
  200.     master's table and slave's table and wanting to take a fresh identical
  201.     start now.
  202.     error < 0 means "really no error". error <= 0 means "maybe some error".
  203.   */
  204.   if ((deleted || (error < 0)) && (error <= 0 || !transactional_table))
  205.   {
  206.     mysql_update_log.write(thd,thd->query, thd->query_length);
  207.     if (mysql_bin_log.is_open())
  208.     {
  209.       if (error <= 0)
  210.         thd->clear_error();
  211.       Query_log_event qinfo(thd, thd->query, thd->query_length,
  212.     log_delayed, FALSE);
  213.       if (mysql_bin_log.write(&qinfo) && transactional_table)
  214. error=1;
  215.     }
  216.     if (!log_delayed)
  217.       thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
  218.   }
  219.   if (transactional_table)
  220.   {
  221.     if (ha_autocommit_or_rollback(thd,error >= 0))
  222.       error=1;
  223.   }
  224.   if (thd->lock)
  225.   {
  226.     mysql_unlock_tables(thd, thd->lock);
  227.     thd->lock=0;
  228.   }
  229.   free_underlaid_joins(thd, &thd->lex->select_lex);
  230.   if (error >= 0 || thd->net.report_error)
  231.     send_error(thd,thd->killed ? ER_SERVER_SHUTDOWN: 0);
  232.   else
  233.   {
  234.     send_ok(thd,deleted);
  235.     DBUG_PRINT("info",("%d records deleted",deleted));
  236.   }
  237.        DBUG_RETURN(0);
  238. }
  239. /*
  240.   Prepare items in DELETE statement
  241.   SYNOPSIS
  242.     mysql_prepare_delete()
  243.     thd - thread handler
  244.     table_list - global table list
  245.     conds - conditions
  246.   RETURN VALUE
  247.     0  - OK
  248.     1  - error (message is sent to user)
  249.     -1 - error (message is not sent to user)
  250. */
  251. int mysql_prepare_delete(THD *thd, TABLE_LIST *table_list, Item **conds)
  252. {
  253.   TABLE_LIST *delete_table_list= ((TABLE_LIST*) thd->lex->
  254.   select_lex.table_list.first);
  255.   DBUG_ENTER("mysql_prepare_delete");
  256.   thd->allow_sum_func= 0;
  257.   if (setup_conds(thd, delete_table_list, conds) || 
  258.       setup_ftfuncs(&thd->lex->select_lex))
  259.     DBUG_RETURN(-1);
  260.   if (find_real_table_in_list(table_list->next, 
  261.       table_list->db, table_list->real_name))
  262.   {
  263.     my_error(ER_UPDATE_TABLE_USED, MYF(0), table_list->real_name);
  264.     DBUG_RETURN(-1);
  265.   }
  266.   DBUG_RETURN(0);
  267. }
  268. /***************************************************************************
  269.   Delete multiple tables from join 
  270. ***************************************************************************/
  271. #define MEM_STRIP_BUF_SIZE current_thd->variables.sortbuff_size
  272. extern "C" int refposcmp2(void* arg, const void *a,const void *b)
  273. {
  274.   /* arg is a pointer to file->ref_length */
  275.   return memcmp(a,b, *(int*) arg);
  276. }
  277. multi_delete::multi_delete(THD *thd_arg, TABLE_LIST *dt,
  278.    uint num_of_tables_arg)
  279.   : delete_tables(dt), thd(thd_arg), deleted(0), found(0),
  280.     num_of_tables(num_of_tables_arg), error(0),
  281.     do_delete(0), transactional_tables(0), log_delayed(0), normal_tables(0)
  282. {
  283.   tempfiles = (Unique **) sql_calloc(sizeof(Unique *) * (num_of_tables-1));
  284. }
  285. int
  286. multi_delete::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
  287. {
  288.   DBUG_ENTER("multi_delete::prepare");
  289.   unit= u;
  290.   do_delete= 1;
  291.   thd->proc_info="deleting from main table";
  292.   DBUG_RETURN(0);
  293. }
  294. bool
  295. multi_delete::initialize_tables(JOIN *join)
  296. {
  297.   TABLE_LIST *walk;
  298.   Unique **tempfiles_ptr;
  299.   DBUG_ENTER("initialize_tables");
  300.   if ((thd->options & OPTION_SAFE_UPDATES) && error_if_full_join(join))
  301.     DBUG_RETURN(1);
  302.   table_map tables_to_delete_from=0;
  303.   for (walk= delete_tables ; walk ; walk=walk->next)
  304.     tables_to_delete_from|= walk->table->map;
  305.   walk= delete_tables;
  306.   for (JOIN_TAB *tab=join->join_tab, *end=join->join_tab+join->tables;
  307.        tab < end;
  308.        tab++)
  309.   {
  310.     if (tab->table->map & tables_to_delete_from)
  311.     {
  312.       /* We are going to delete from this table */
  313.       TABLE *tbl=walk->table=tab->table;
  314.       walk=walk->next;
  315.       /* Don't use KEYREAD optimization on this table */
  316.       tbl->no_keyread=1;
  317.       /* Don't use record cache */
  318.       tbl->no_cache= 1;
  319.       tbl->used_keys.clear_all();
  320.       if (tbl->file->has_transactions())
  321. log_delayed= transactional_tables= 1;
  322.       else if (tbl->tmp_table != NO_TMP_TABLE)
  323. log_delayed= 1;
  324.       else
  325. normal_tables= 1;
  326.     }
  327.   }
  328.   walk= delete_tables;
  329.   tempfiles_ptr= tempfiles;
  330.   for (walk=walk->next ; walk ; walk=walk->next)
  331.   {
  332.     TABLE *table=walk->table;
  333.     *tempfiles_ptr++= new Unique (refposcmp2,
  334.   (void *) &table->file->ref_length,
  335.   table->file->ref_length,
  336.   MEM_STRIP_BUF_SIZE);
  337.   }
  338.   init_ftfuncs(thd, thd->lex->current_select, 1);
  339.   DBUG_RETURN(thd->is_fatal_error != 0);
  340. }
  341. multi_delete::~multi_delete()
  342. {
  343.   for (table_being_deleted=delete_tables ;
  344.        table_being_deleted ;
  345.        table_being_deleted=table_being_deleted->next)
  346.   {
  347.     TABLE *t=table_being_deleted->table;
  348.     free_io_cache(t); // Alloced by unique
  349.     t->no_keyread=0;
  350.   }
  351.   for (uint counter= 0; counter < num_of_tables-1; counter++)
  352.   {
  353.     if (tempfiles[counter])
  354.       delete tempfiles[counter];
  355.   }
  356. }
  357. bool multi_delete::send_data(List<Item> &values)
  358. {
  359.   int secure_counter= -1;
  360.   DBUG_ENTER("multi_delete::send_data");
  361.   for (table_being_deleted=delete_tables ;
  362.        table_being_deleted ;
  363.        table_being_deleted=table_being_deleted->next, secure_counter++)
  364.   {
  365.     TABLE *table=table_being_deleted->table;
  366.     /* Check if we are using outer join and we didn't find the row */
  367.     if (table->status & (STATUS_NULL_ROW | STATUS_DELETED))
  368.       continue;
  369.     table->file->position(table->record[0]);
  370.     found++;
  371.     if (secure_counter < 0)
  372.     {
  373.       /* If this is the table we are scanning */
  374.       table->status|= STATUS_DELETED;
  375.       if (!(error=table->file->delete_row(table->record[0])))
  376. deleted++;
  377.       else if (!table_being_deleted->next || table_being_deleted->table->file->has_transactions())
  378.       {
  379. table->file->print_error(error,MYF(0));
  380. DBUG_RETURN(1);
  381.       }
  382.     }
  383.     else
  384.     {
  385.       error=tempfiles[secure_counter]->unique_add((char*) table->file->ref);
  386.       if (error)
  387.       {
  388. error=-1;
  389. DBUG_RETURN(1);
  390.       }
  391.     }
  392.   }
  393.   DBUG_RETURN(0);
  394. }
  395. void multi_delete::send_error(uint errcode,const char *err)
  396. {
  397.   DBUG_ENTER("multi_delete::send_error");
  398.   /* First send error what ever it is ... */
  399.   ::send_error(thd,errcode,err);
  400.   /* If nothing deleted return */
  401.   if (!deleted)
  402.     DBUG_VOID_RETURN;
  403.   /* Something already deleted so we have to invalidate cache */
  404.   query_cache_invalidate3(thd, delete_tables, 1);
  405.   /* Below can happen when thread is killed early ... */
  406.   if (!table_being_deleted)
  407.     table_being_deleted=delete_tables;
  408.   /*
  409.     If rows from the first table only has been deleted and it is
  410.     transactional, just do rollback.
  411.     The same if all tables are transactional, regardless of where we are.
  412.     In all other cases do attempt deletes ...
  413.   */
  414.   if ((table_being_deleted->table->file->has_transactions() &&
  415.        table_being_deleted == delete_tables) || !normal_tables)
  416.     ha_rollback_stmt(thd);
  417.   else if (do_delete)
  418.   {
  419.     VOID(do_deletes(1));
  420.   }
  421.   DBUG_VOID_RETURN;
  422. }
  423. /*
  424.   Do delete from other tables.
  425.   Returns values:
  426. 0 ok
  427. 1 error
  428. */
  429. int multi_delete::do_deletes(bool from_send_error)
  430. {
  431.   int local_error= 0, counter= 0;
  432.   DBUG_ENTER("do_deletes");
  433.   if (from_send_error)
  434.   {
  435.     /* Found out table number for 'table_being_deleted*/
  436.     for (TABLE_LIST *aux=delete_tables;
  437.  aux != table_being_deleted;
  438.  aux=aux->next)
  439.       counter++;
  440.   }
  441.   else
  442.     table_being_deleted = delete_tables;
  443.   do_delete= 0;
  444.   if (!found)
  445.     DBUG_RETURN(0);
  446.   for (table_being_deleted=table_being_deleted->next;
  447.        table_being_deleted ;
  448.        table_being_deleted=table_being_deleted->next, counter++)
  449.   { 
  450.     TABLE *table = table_being_deleted->table;
  451.     if (tempfiles[counter]->get(table))
  452.     {
  453.       local_error=1;
  454.       break;
  455.     }
  456.     READ_RECORD info;
  457.     init_read_record(&info,thd,table,NULL,0,1);
  458.     /*
  459.       Ignore any rows not found in reference tables as they may already have
  460.       been deleted by foreign key handling
  461.     */
  462.     info.ignore_not_found_rows= 1;
  463.     while (!(local_error=info.read_record(&info)) && !thd->killed)
  464.     {
  465.       if ((local_error=table->file->delete_row(table->record[0])))
  466.       {
  467. table->file->print_error(local_error,MYF(0));
  468. break;
  469.       }
  470.       deleted++;
  471.     }
  472.     end_read_record(&info);
  473.     if (thd->killed && !local_error)
  474.       local_error= 1;
  475.     if (local_error == -1) // End of file
  476.       local_error = 0;
  477.   }
  478.   DBUG_RETURN(local_error);
  479. }
  480. /*
  481.   Send ok to the client
  482.   return:  0 sucess
  483.    1 error
  484. */
  485. bool multi_delete::send_eof()
  486. {
  487.   thd->proc_info="deleting from reference tables";
  488.   /* Does deletes for the last n - 1 tables, returns 0 if ok */
  489.   int local_error= do_deletes(0); // returns 0 if success
  490.   /* reset used flags */
  491.   thd->proc_info="end";
  492.   /*
  493.     We must invalidate the query cache before binlog writing and
  494.     ha_autocommit_...
  495.   */
  496.   if (deleted)
  497.     query_cache_invalidate3(thd, delete_tables, 1);
  498.   /*
  499.     Write the SQL statement to the binlog if we deleted
  500.     rows and we succeeded, or also in an error case when there
  501.     was a non-transaction-safe table involved, since
  502.     modifications in it cannot be rolled back.
  503.     Note that if we deleted nothing we don't write to the binlog (TODO:
  504.     fix this).
  505.   */
  506.   if (deleted && (error <= 0 || normal_tables))
  507.   {
  508.     mysql_update_log.write(thd,thd->query,thd->query_length);
  509.     if (mysql_bin_log.is_open())
  510.     {
  511.       if (error <= 0)
  512.         thd->clear_error();
  513.       Query_log_event qinfo(thd, thd->query, thd->query_length,
  514.     log_delayed, FALSE);
  515.       if (mysql_bin_log.write(&qinfo) && !normal_tables)
  516. local_error=1;  // Log write failed: roll back the SQL statement
  517.     }
  518.     if (!log_delayed)
  519.       thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
  520.   }
  521.   /* Commit or rollback the current SQL statement */ 
  522.   if (transactional_tables)
  523.     if (ha_autocommit_or_rollback(thd,local_error > 0))
  524.       local_error=1;
  525.   if (local_error)
  526.     ::send_error(thd);
  527.   else
  528.     ::send_ok(thd, deleted);
  529.   return 0;
  530. }
  531. /***************************************************************************
  532.   TRUNCATE TABLE
  533. ****************************************************************************/
  534. /*
  535.   Optimize delete of all rows by doing a full generate of the table
  536.   This will work even if the .ISM and .ISD tables are destroyed
  537.   dont_send_ok should be set if:
  538.   - We should always wants to generate the table (even if the table type
  539.     normally can't safely do this.
  540.   - We don't want an ok to be sent to the end user.
  541.   - We don't want to log the truncate command
  542.   - If we want to have a name lock on the table on exit without errors.
  543. */
  544. int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok)
  545. {
  546.   HA_CREATE_INFO create_info;
  547.   char path[FN_REFLEN];
  548.   TABLE **table_ptr;
  549.   int error;
  550.   DBUG_ENTER("mysql_truncate");
  551.   bzero((char*) &create_info,sizeof(create_info));
  552.   /* If it is a temporary table, close and regenerate it */
  553.   if (!dont_send_ok && (table_ptr=find_temporary_table(thd,table_list->db,
  554.        table_list->real_name)))
  555.   {
  556.     TABLE *table= *table_ptr;
  557.     table->file->info(HA_STATUS_AUTO | HA_STATUS_NO_LOCK);
  558.     db_type table_type=table->db_type;
  559.     if (!ha_supports_generate(table_type))
  560.       goto trunc_by_del;
  561.     strmov(path,table->path);
  562.     *table_ptr= table->next; // Unlink table from list
  563.     close_temporary(table,0);
  564.     *fn_ext(path)=0; // Remove the .frm extension
  565.     ha_create_table(path, &create_info,1);
  566.     // We don't need to call invalidate() because this table is not in cache
  567.     if ((error= (int) !(open_temporary_table(thd, path, table_list->db,
  568.      table_list->real_name, 1))))
  569.       (void) rm_temporary_table(table_type, path);
  570.     /*
  571.       If we return here we will not have logged the truncation to the bin log
  572.       and we will not send_ok() to the client.
  573.     */
  574.     goto end; 
  575.   }
  576.   (void) sprintf(path,"%s/%s/%s%s",mysql_data_home,table_list->db,
  577.  table_list->real_name,reg_ext);
  578.   fn_format(path, path, "", "", MY_UNPACK_FILENAME);
  579.   if (!dont_send_ok)
  580.   {
  581.     db_type table_type;
  582.     if ((table_type=get_table_type(path)) == DB_TYPE_UNKNOWN)
  583.     {
  584.       my_error(ER_NO_SUCH_TABLE, MYF(0), table_list->db,
  585.        table_list->real_name);
  586.       DBUG_RETURN(-1);
  587.     }
  588.     if (!ha_supports_generate(table_type))
  589.       goto trunc_by_del;
  590.     if (lock_and_wait_for_table_name(thd, table_list))
  591.       DBUG_RETURN(-1);
  592.   }
  593.   *fn_ext(path)=0; // Remove the .frm extension
  594.   error= ha_create_table(path,&create_info,1) ? -1 : 0;
  595.   query_cache_invalidate3(thd, table_list, 0); 
  596. end:
  597.   if (!dont_send_ok)
  598.   {
  599.     if (!error)
  600.     {
  601.       mysql_update_log.write(thd,thd->query,thd->query_length);
  602.       if (mysql_bin_log.is_open())
  603.       {
  604.         thd->clear_error();
  605. Query_log_event qinfo(thd, thd->query, thd->query_length,
  606.       thd->tmp_table, FALSE);
  607. mysql_bin_log.write(&qinfo);
  608.       }
  609.       send_ok(thd); // This should return record count
  610.     }
  611.     VOID(pthread_mutex_lock(&LOCK_open));
  612.     unlock_table_name(thd, table_list);
  613.     VOID(pthread_mutex_unlock(&LOCK_open));
  614.   }
  615.   else if (error)
  616.   {
  617.     VOID(pthread_mutex_lock(&LOCK_open));
  618.     unlock_table_name(thd, table_list);
  619.     VOID(pthread_mutex_unlock(&LOCK_open));
  620.   }
  621.   DBUG_RETURN(error ? -1 : 0);
  622.  trunc_by_del:
  623.   /* Probably InnoDB table */
  624.   ulong save_options= thd->options;
  625.   table_list->lock_type= TL_WRITE;
  626.   thd->options&= ~(ulong) (OPTION_BEGIN | OPTION_NOT_AUTOCOMMIT);
  627.   ha_enable_transaction(thd, FALSE);
  628.   error= mysql_delete(thd, table_list, (COND*) 0, (SQL_LIST*) 0,
  629.                       HA_POS_ERROR, 0);
  630.   ha_enable_transaction(thd, TRUE);
  631.   thd->options= save_options;
  632.   DBUG_RETURN(error);
  633. }