2001-07-10 14:53:08 +02:00
|
|
|
/* Copyright (C) 2000 MySQL AB
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
2001-11-22 16:55:18 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
/*
|
2001-09-02 12:47:00 +02:00
|
|
|
Delete of records and truncate of tables.
|
2001-11-22 16:55:18 +01:00
|
|
|
|
2001-09-02 12:47:00 +02:00
|
|
|
Multi-table deletes were introduced by Monty and Sinisa
|
2000-07-31 21:29:14 +02:00
|
|
|
*/
|
|
|
|
|
2001-11-22 16:55:18 +01:00
|
|
|
|
|
|
|
|
2001-09-02 12:47:00 +02:00
|
|
|
#include "mysql_priv.h"
|
|
|
|
#include "ha_innobase.h"
|
|
|
|
#include "sql_select.h"
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2001-09-02 12:47:00 +02:00
|
|
|
int mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds, ORDER *order,
|
|
|
|
ha_rows limit, thr_lock_type lock_type, ulong options)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
TABLE *table;
|
2001-09-02 12:47:00 +02:00
|
|
|
SQL_SELECT *select=0;
|
2000-07-31 21:29:14 +02:00
|
|
|
READ_RECORD info;
|
|
|
|
bool using_limit=limit != HA_POS_ERROR;
|
2001-09-02 12:47:00 +02:00
|
|
|
bool using_transactions;
|
|
|
|
ha_rows deleted;
|
2000-07-31 21:29:14 +02:00
|
|
|
DBUG_ENTER("mysql_delete");
|
|
|
|
|
|
|
|
if (!table_list->db)
|
|
|
|
table_list->db=thd->db;
|
|
|
|
if ((thd->options & OPTION_SAFE_UPDATES) && !conds)
|
|
|
|
{
|
|
|
|
send_error(&thd->net,ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE);
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
|
|
|
|
2001-09-02 12:47:00 +02:00
|
|
|
if (!(table = open_ltable(thd,table_list, lock_type)))
|
2000-07-31 21:29:14 +02:00
|
|
|
DBUG_RETURN(-1);
|
2001-03-02 14:05:12 +01:00
|
|
|
table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK);
|
2000-07-31 21:29:14 +02:00
|
|
|
thd->proc_info="init";
|
|
|
|
table->map=1;
|
2001-11-21 18:25:44 +01:00
|
|
|
if (setup_conds(thd,table_list,&conds) || setup_ftfuncs(thd))
|
2000-07-31 21:29:14 +02:00
|
|
|
DBUG_RETURN(-1);
|
|
|
|
|
2001-09-02 12:47:00 +02:00
|
|
|
/* Test if the user wants to delete all rows */
|
|
|
|
if (!using_limit && (!conds || conds->const_item()) &&
|
|
|
|
!(specialflag & (SPECIAL_NO_NEW_FUNC | SPECIAL_SAFE_MODE)))
|
|
|
|
{
|
|
|
|
deleted= table->file->records;
|
|
|
|
if (!(error=table->file->delete_all_rows()))
|
|
|
|
{
|
|
|
|
error= -1; // ok
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (error != HA_ERR_WRONG_COMMAND)
|
|
|
|
{
|
|
|
|
table->file->print_error(error,MYF(0));
|
|
|
|
error=0;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
/* Handler didn't support fast delete; Delete rows one by one */
|
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
table->used_keys=table->quick_keys=0; // Can't use 'only index'
|
|
|
|
select=make_select(table,0,0,conds,&error);
|
|
|
|
if (error)
|
|
|
|
DBUG_RETURN(-1);
|
2001-07-16 02:04:30 +02:00
|
|
|
if ((select && select->check_quick(test(thd->options & SQL_SAFE_UPDATES),
|
2001-11-22 16:55:18 +01:00
|
|
|
limit)) ||
|
2001-07-16 02:04:30 +02:00
|
|
|
!limit)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
delete select;
|
|
|
|
send_ok(&thd->net,0L);
|
2001-07-16 02:04:30 +02:00
|
|
|
DBUG_RETURN(0); // Nothing to delete
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If running in safe sql mode, don't allow updates without keys */
|
2000-11-20 01:57:02 +01:00
|
|
|
if (!table->quick_keys)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2001-06-03 16:07:26 +02:00
|
|
|
thd->lex.select_lex.options|=QUERY_NO_INDEX_USED;
|
2000-11-20 01:57:02 +01:00
|
|
|
if ((thd->options & OPTION_SAFE_UPDATES) && limit == HA_POS_ERROR)
|
|
|
|
{
|
|
|
|
delete select;
|
|
|
|
send_error(&thd->net,ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE);
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
(void) table->file->extra(HA_EXTRA_NO_READCHECK);
|
2000-09-20 03:54:10 +02:00
|
|
|
if (options & OPTION_QUICK)
|
2001-04-11 13:04:03 +02:00
|
|
|
(void) table->file->extra(HA_EXTRA_QUICK);
|
|
|
|
|
|
|
|
if (order)
|
|
|
|
{
|
|
|
|
uint length;
|
|
|
|
SORT_FIELD *sortorder;
|
|
|
|
TABLE_LIST tables;
|
|
|
|
List<Item> fields;
|
|
|
|
List<Item> all_fields;
|
2001-05-11 01:08:29 +02:00
|
|
|
ha_rows examined_rows;
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
bzero((char*) &tables,sizeof(tables));
|
|
|
|
tables.table = table;
|
|
|
|
|
|
|
|
table->io_cache = (IO_CACHE *) my_malloc(sizeof(IO_CACHE),
|
|
|
|
MYF(MY_FAE | MY_ZEROFILL));
|
|
|
|
if (setup_order(thd, &tables, fields, all_fields, order) ||
|
|
|
|
!(sortorder=make_unireg_sortorder(order, &length)) ||
|
2001-06-25 10:35:22 +02:00
|
|
|
(table->found_records = filesort(table, sortorder, length,
|
2001-05-11 01:08:29 +02:00
|
|
|
(SQL_SELECT *) 0, 0L, HA_POS_ERROR,
|
|
|
|
&examined_rows))
|
2001-04-11 13:04:03 +02:00
|
|
|
== HA_POS_ERROR)
|
|
|
|
{
|
|
|
|
delete select;
|
|
|
|
DBUG_RETURN(-1); // This will force out message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
init_read_record(&info,thd,table,select,1,1);
|
2001-09-02 12:47:00 +02:00
|
|
|
deleted=0L;
|
2001-11-22 16:55:18 +01:00
|
|
|
init_ftfuncs(thd,1);
|
2000-07-31 21:29:14 +02:00
|
|
|
thd->proc_info="updating";
|
|
|
|
while (!(error=info.read_record(&info)) && !thd->killed)
|
|
|
|
{
|
|
|
|
if (!(select && select->skipp_record()))
|
|
|
|
{
|
|
|
|
if (!(error=table->file->delete_row(table->record[0])))
|
|
|
|
{
|
|
|
|
deleted++;
|
|
|
|
if (!--limit && using_limit)
|
|
|
|
{
|
|
|
|
error= -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
table->file->print_error(error,MYF(0));
|
|
|
|
error=0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-08-21 19:06:00 +02:00
|
|
|
else
|
|
|
|
table->file->unlock_row(); // Row failed selection, release lock on it
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
thd->proc_info="end";
|
|
|
|
end_read_record(&info);
|
2001-04-11 13:04:03 +02:00
|
|
|
/* if (order) free_io_cache(table); */ /* QQ Should not be needed */
|
2000-09-20 03:54:10 +02:00
|
|
|
(void) table->file->extra(HA_EXTRA_READCHECK);
|
|
|
|
if (options & OPTION_QUICK)
|
2001-04-11 13:04:03 +02:00
|
|
|
(void) table->file->extra(HA_EXTRA_NORMAL);
|
2001-09-02 12:47:00 +02:00
|
|
|
|
|
|
|
cleanup:
|
2000-12-07 13:08:48 +01:00
|
|
|
using_transactions=table->file->has_transactions();
|
2000-12-08 16:04:57 +01:00
|
|
|
if (deleted && (error <= 0 || !using_transactions))
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2000-09-16 03:27:21 +02:00
|
|
|
mysql_update_log.write(thd,thd->query, thd->query_length);
|
|
|
|
if (mysql_bin_log.is_open())
|
|
|
|
{
|
2000-12-07 13:08:48 +01:00
|
|
|
Query_log_event qinfo(thd, thd->query, using_transactions);
|
|
|
|
if (mysql_bin_log.write(&qinfo) && using_transactions)
|
|
|
|
error=1;
|
2000-09-16 03:27:21 +02:00
|
|
|
}
|
2000-12-07 13:08:48 +01:00
|
|
|
if (!using_transactions)
|
2000-11-24 00:51:18 +01:00
|
|
|
thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2000-12-07 13:08:48 +01:00
|
|
|
if (using_transactions && ha_autocommit_or_rollback(thd,error >= 0))
|
2000-07-31 21:29:14 +02:00
|
|
|
error=1;
|
|
|
|
if (thd->lock)
|
|
|
|
{
|
|
|
|
mysql_unlock_tables(thd, thd->lock);
|
|
|
|
thd->lock=0;
|
|
|
|
}
|
2001-12-02 13:34:01 +01:00
|
|
|
if (deleted)
|
|
|
|
query_cache.invalidate(table_list);
|
2000-07-31 21:29:14 +02:00
|
|
|
delete select;
|
|
|
|
if (error >= 0) // Fatal error
|
|
|
|
send_error(&thd->net,thd->killed ? ER_SERVER_SHUTDOWN: 0);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
send_ok(&thd->net,deleted);
|
|
|
|
DBUG_PRINT("info",("%d records deleted",deleted));
|
|
|
|
}
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-03 16:07:26 +02:00
|
|
|
/***************************************************************************
|
|
|
|
** delete multiple tables from join
|
|
|
|
***************************************************************************/
|
|
|
|
|
2001-06-29 03:04:29 +02:00
|
|
|
#define MEM_STRIP_BUF_SIZE sortbuff_size
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-06-07 13:10:58 +02:00
|
|
|
int refposcmp2(void* arg, const void *a,const void *b)
|
|
|
|
{
|
2001-08-14 19:33:49 +02:00
|
|
|
return memcmp(a,b, *(int*) arg);
|
2001-06-07 13:10:58 +02:00
|
|
|
}
|
2001-06-03 16:07:26 +02:00
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
multi_delete::multi_delete(THD *thd_arg, TABLE_LIST *dt,
|
|
|
|
thr_lock_type lock_option_arg,
|
|
|
|
uint num_of_tables_arg)
|
|
|
|
: delete_tables (dt), thd(thd_arg), deleted(0),
|
|
|
|
num_of_tables(num_of_tables_arg), error(0), lock_option(lock_option_arg),
|
|
|
|
do_delete(false)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
uint counter=0;
|
|
|
|
tempfiles = (Unique **) sql_calloc(sizeof(Unique *) * (num_of_tables-1));
|
|
|
|
|
|
|
|
(void) dt->table->file->extra(HA_EXTRA_NO_READCHECK);
|
|
|
|
/* Don't use key read with MULTI-TABLE-DELETE */
|
2001-07-10 14:53:08 +02:00
|
|
|
(void) dt->table->file->extra(HA_EXTRA_NO_KEYREAD);
|
2001-06-15 04:03:15 +02:00
|
|
|
dt->table->used_keys=0;
|
|
|
|
for (dt=dt->next ; dt ; dt=dt->next,counter++)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
TABLE *table=dt->table;
|
2001-07-10 14:53:08 +02:00
|
|
|
(void) dt->table->file->extra(HA_EXTRA_NO_READCHECK);
|
|
|
|
(void) dt->table->file->extra(HA_EXTRA_NO_KEYREAD);
|
2001-06-15 04:03:15 +02:00
|
|
|
tempfiles[counter] = new Unique (refposcmp2,
|
2001-08-14 19:33:49 +02:00
|
|
|
(void *) &table->file->ref_length,
|
2001-06-15 04:03:15 +02:00
|
|
|
table->file->ref_length,
|
|
|
|
MEM_STRIP_BUF_SIZE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
multi_delete::prepare(List<Item> &values)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("multi_delete::prepare");
|
|
|
|
do_delete = true;
|
|
|
|
thd->proc_info="deleting from main table";
|
|
|
|
|
|
|
|
if (thd->options & OPTION_SAFE_UPDATES)
|
|
|
|
{
|
|
|
|
TABLE_LIST *table_ref;
|
|
|
|
for (table_ref=delete_tables; table_ref; table_ref=table_ref->next)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
TABLE *table=table_ref->table;
|
|
|
|
if ((thd->options & OPTION_SAFE_UPDATES) && !table->quick_keys)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
my_error(ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE,MYF(0));
|
2001-06-03 16:07:26 +02:00
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
2001-07-01 12:20:53 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
multi_delete::initialize_tables(JOIN *join)
|
|
|
|
{
|
2001-07-10 14:53:08 +02:00
|
|
|
TABLE_LIST *walk;
|
|
|
|
table_map tables_to_delete_from=0;
|
|
|
|
for (walk= delete_tables ; walk ; walk=walk->next)
|
|
|
|
tables_to_delete_from|= walk->table->map;
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2001-07-10 14:53:08 +02:00
|
|
|
walk= delete_tables;
|
2001-07-01 12:20:53 +02:00
|
|
|
for (JOIN_TAB *tab=join->join_tab, *end=join->join_tab+join->tables;
|
|
|
|
tab < end;
|
|
|
|
tab++)
|
|
|
|
{
|
2001-07-10 14:53:08 +02:00
|
|
|
if (tab->table->map & tables_to_delete_from)
|
2001-07-01 12:20:53 +02:00
|
|
|
{
|
2001-07-10 14:53:08 +02:00
|
|
|
/* We are going to delete from this table */
|
|
|
|
walk->table=tab->table;
|
|
|
|
walk=walk->next;
|
2001-10-04 20:52:41 +02:00
|
|
|
if (tab == join->join_tab)
|
|
|
|
tab->table->no_keyread=1;
|
2001-07-01 12:20:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-07-10 14:53:08 +02:00
|
|
|
|
2001-06-03 16:07:26 +02:00
|
|
|
multi_delete::~multi_delete()
|
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
/* Add back EXTRA_READCHECK; In 4.0.1 we shouldn't need this anymore */
|
|
|
|
for (table_being_deleted=delete_tables ;
|
|
|
|
table_being_deleted ;
|
|
|
|
table_being_deleted=table_being_deleted->next)
|
2001-07-10 14:53:08 +02:00
|
|
|
(void) table_being_deleted->table->file->extra(HA_EXTRA_READCHECK);
|
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
for (uint counter = 0; counter < num_of_tables-1; counter++)
|
|
|
|
{
|
2001-06-03 16:07:26 +02:00
|
|
|
if (tempfiles[counter])
|
2001-06-15 04:03:15 +02:00
|
|
|
delete tempfiles[counter];
|
|
|
|
}
|
2001-06-03 16:07:26 +02:00
|
|
|
}
|
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-06-03 16:07:26 +02:00
|
|
|
bool multi_delete::send_data(List<Item> &values)
|
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
int secure_counter= -1;
|
|
|
|
for (table_being_deleted=delete_tables ;
|
|
|
|
table_being_deleted ;
|
|
|
|
table_being_deleted=table_being_deleted->next, secure_counter++)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
|
|
|
TABLE *table=table_being_deleted->table;
|
2001-06-15 04:03:15 +02:00
|
|
|
|
|
|
|
/* Check if we are using outer join and we didn't find the row */
|
|
|
|
if (table->status & (STATUS_NULL_ROW | STATUS_DELETED))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
table->file->position(table->record[0]);
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
if (secure_counter < 0)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
table->status|= STATUS_DELETED;
|
|
|
|
if (!(error=table->file->delete_row(table->record[0])))
|
|
|
|
deleted++;
|
2001-06-03 16:07:26 +02:00
|
|
|
else
|
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
table->file->print_error(error,MYF(0));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-09-15 15:22:34 +02:00
|
|
|
error=tempfiles[secure_counter]->unique_add((char*) table->file->ref);
|
2001-06-15 04:03:15 +02:00
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
error=-1;
|
|
|
|
return 1;
|
|
|
|
}
|
2001-06-03 16:07:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Return true if some table is not transaction safe */
|
2001-06-03 16:07:26 +02:00
|
|
|
|
|
|
|
static bool some_table_is_not_transaction_safe (TABLE_LIST *tl)
|
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
for (; tl ; tl=tl->next)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
if (!(tl->table->file->has_transactions()))
|
2001-06-03 16:07:26 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void multi_delete::send_error(uint errcode,const char *err)
|
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
/* First send error what ever it is ... */
|
2001-06-03 16:07:26 +02:00
|
|
|
::send_error(&thd->net,errcode,err);
|
2001-10-04 20:52:41 +02:00
|
|
|
|
|
|
|
/* reset used flags */
|
|
|
|
delete_tables->table->no_keyread=0;
|
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
/* If nothing deleted return */
|
|
|
|
if (!deleted)
|
|
|
|
return;
|
|
|
|
/* Below can happen when thread is killed early ... */
|
|
|
|
if (!table_being_deleted)
|
|
|
|
table_being_deleted=delete_tables;
|
|
|
|
|
|
|
|
/*
|
|
|
|
If rows from the first table only has been deleted and it is transactional,
|
|
|
|
just do rollback.
|
|
|
|
The same if all tables are transactional, regardless of where we are.
|
|
|
|
In all other cases do attempt deletes ...
|
|
|
|
*/
|
|
|
|
if ((table_being_deleted->table->file->has_transactions() &&
|
|
|
|
table_being_deleted == delete_tables) ||
|
|
|
|
!some_table_is_not_transaction_safe(delete_tables->next))
|
2001-10-19 16:43:30 +02:00
|
|
|
ha_rollback_stmt(thd);
|
2001-06-03 16:07:26 +02:00
|
|
|
else if (do_delete)
|
|
|
|
VOID(do_deletes(true));
|
|
|
|
}
|
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-12-13 01:31:19 +01:00
|
|
|
/*
|
|
|
|
Do delete from other tables.
|
|
|
|
Returns values:
|
|
|
|
0 ok
|
|
|
|
1 error
|
|
|
|
*/
|
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
int multi_delete::do_deletes (bool from_send_error)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-09-15 15:22:34 +02:00
|
|
|
int error = 0, counter = 0;
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-06-03 16:07:26 +02:00
|
|
|
if (from_send_error)
|
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
/* Found out table number for 'table_being_deleted' */
|
|
|
|
for (TABLE_LIST *aux=delete_tables;
|
|
|
|
aux != table_being_deleted;
|
|
|
|
aux=aux->next)
|
2001-06-03 16:07:26 +02:00
|
|
|
counter++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
table_being_deleted = delete_tables;
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-06-03 16:07:26 +02:00
|
|
|
do_delete = false;
|
2001-06-15 04:03:15 +02:00
|
|
|
for (table_being_deleted=table_being_deleted->next;
|
|
|
|
table_being_deleted ;
|
|
|
|
table_being_deleted=table_being_deleted->next, counter++)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
TABLE *table = table_being_deleted->table;
|
|
|
|
if (tempfiles[counter]->get(table))
|
|
|
|
{
|
|
|
|
error=1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if USE_REGENERATE_TABLE
|
|
|
|
// nice little optimization ....
|
|
|
|
// but Monty has to fix generate_table...
|
|
|
|
// This will not work for transactional tables because for other types
|
|
|
|
// records is not absolute
|
|
|
|
if (num_of_positions == table->file->records)
|
|
|
|
{
|
2001-06-03 16:07:26 +02:00
|
|
|
TABLE_LIST table_list;
|
|
|
|
bzero((char*) &table_list,sizeof(table_list));
|
2001-12-13 01:31:19 +01:00
|
|
|
table_list.name=table->table_name;
|
|
|
|
table_list.real_name=table_being_deleted->real_name;
|
2001-06-03 16:07:26 +02:00
|
|
|
table_list.table=table;
|
|
|
|
table_list.grant=table->grant;
|
|
|
|
table_list.db = table_being_deleted->db;
|
|
|
|
error=generate_table(thd,&table_list,(TABLE *)0);
|
|
|
|
if (error <= 0) {error = 1; break;}
|
|
|
|
deleted += num_of_positions;
|
2001-06-15 04:03:15 +02:00
|
|
|
continue;
|
2001-06-03 16:07:26 +02:00
|
|
|
}
|
2001-06-15 04:03:15 +02:00
|
|
|
#endif /* USE_REGENERATE_TABLE */
|
|
|
|
|
|
|
|
READ_RECORD info;
|
|
|
|
init_read_record(&info,thd,table,NULL,0,0);
|
|
|
|
bool not_trans_safe = some_table_is_not_transaction_safe(delete_tables);
|
|
|
|
while (!(error=info.read_record(&info)) &&
|
|
|
|
(!thd->killed || from_send_error || not_trans_safe))
|
|
|
|
{
|
2001-12-13 01:31:19 +01:00
|
|
|
if ((error=table->file->delete_row(table->record[0])))
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
2001-06-15 04:03:15 +02:00
|
|
|
table->file->print_error(error,MYF(0));
|
|
|
|
break;
|
2001-06-03 16:07:26 +02:00
|
|
|
}
|
2001-12-13 01:31:19 +01:00
|
|
|
deleted++;
|
2001-06-03 16:07:26 +02:00
|
|
|
}
|
2001-06-15 04:03:15 +02:00
|
|
|
end_read_record(&info);
|
2001-12-13 01:31:19 +01:00
|
|
|
if (error == -1) // End of file
|
2001-06-15 04:03:15 +02:00
|
|
|
error = 0;
|
2001-06-03 16:07:26 +02:00
|
|
|
}
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-06-03 16:07:26 +02:00
|
|
|
bool multi_delete::send_eof()
|
|
|
|
{
|
2001-10-19 16:43:30 +02:00
|
|
|
thd->proc_info="deleting from reference tables"; /* out: 1 if error, 0 if success */
|
2001-10-25 13:41:49 +02:00
|
|
|
|
|
|
|
/* Does deletes for the last n - 1 tables, returns 0 if ok */
|
2001-10-19 16:43:30 +02:00
|
|
|
int error = do_deletes(false); /* do_deletes returns 0 if success */
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-10-04 20:52:41 +02:00
|
|
|
/* reset used flags */
|
|
|
|
delete_tables->table->no_keyread=0;
|
2001-06-03 16:07:26 +02:00
|
|
|
thd->proc_info="end";
|
2001-10-19 16:43:30 +02:00
|
|
|
if (error)
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
|
|
|
::send_error(&thd->net);
|
|
|
|
return 1;
|
|
|
|
}
|
2001-06-15 04:03:15 +02:00
|
|
|
|
2001-10-19 16:43:30 +02:00
|
|
|
/* Write the SQL statement to the binlog if we deleted
|
|
|
|
rows and we succeeded, or also in an error case when there
|
|
|
|
was a non-transaction-safe table involved, since
|
|
|
|
modifications in it cannot be rolled back. */
|
|
|
|
|
2001-12-13 01:31:19 +01:00
|
|
|
if (deleted || some_table_is_not_transaction_safe(delete_tables))
|
2001-06-03 16:07:26 +02:00
|
|
|
{
|
|
|
|
mysql_update_log.write(thd,thd->query,thd->query_length);
|
2001-12-13 01:31:19 +01:00
|
|
|
if (mysql_bin_log.is_open())
|
|
|
|
{
|
|
|
|
Query_log_event qinfo(thd, thd->query);
|
|
|
|
if (mysql_bin_log.write(&qinfo) &&
|
|
|
|
!some_table_is_not_transaction_safe(delete_tables))
|
|
|
|
error=1; // Log write failed: roll back the SQL statement
|
|
|
|
}
|
2001-10-25 13:41:49 +02:00
|
|
|
/* Commit or rollback the current SQL statement */
|
|
|
|
VOID(ha_autocommit_or_rollback(thd,error > 0));
|
2001-06-03 16:07:26 +02:00
|
|
|
}
|
2001-10-19 16:43:30 +02:00
|
|
|
|
2001-06-03 16:07:26 +02:00
|
|
|
::send_ok(&thd->net,deleted);
|
|
|
|
return 0;
|
|
|
|
}
|
2001-09-02 12:47:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* TRUNCATE TABLE
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Optimize delete of all rows by doing a full generate of the table
|
|
|
|
This will work even if the .ISM and .ISD tables are destroyed
|
|
|
|
|
|
|
|
dont_send_ok should be set if:
|
|
|
|
- We should always wants to generate the table (even if the table type
|
|
|
|
normally can't safely do this.
|
|
|
|
- We don't want an ok to be sent to the end user.
|
|
|
|
- We don't want to log the truncate command
|
2001-09-03 04:16:15 +02:00
|
|
|
- If we want to have a name lock on the table on exit without errors.
|
2001-09-02 12:47:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok)
|
|
|
|
{
|
|
|
|
HA_CREATE_INFO create_info;
|
|
|
|
char path[FN_REFLEN];
|
|
|
|
TABLE **table_ptr;
|
|
|
|
int error;
|
|
|
|
DBUG_ENTER("mysql_truncate");
|
|
|
|
|
|
|
|
/* If it is a temporary table, close and regenerate it */
|
2001-09-03 04:16:15 +02:00
|
|
|
if (!dont_send_ok && (table_ptr=find_temporary_table(thd,table_list->db,
|
|
|
|
table_list->real_name)))
|
2001-09-02 12:47:00 +02:00
|
|
|
{
|
|
|
|
TABLE *table= *table_ptr;
|
|
|
|
HA_CREATE_INFO create_info;
|
|
|
|
table->file->info(HA_STATUS_AUTO | HA_STATUS_NO_LOCK);
|
|
|
|
bzero((char*) &create_info,sizeof(create_info));
|
|
|
|
create_info.auto_increment_value= table->file->auto_increment_value;
|
|
|
|
db_type table_type=table->db_type;
|
|
|
|
|
|
|
|
strmov(path,table->path);
|
|
|
|
*table_ptr= table->next; // Unlink table from list
|
|
|
|
close_temporary(table,0);
|
|
|
|
*fn_ext(path)=0; // Remove the .frm extension
|
|
|
|
ha_create_table(path, &create_info,1);
|
2001-12-02 13:34:01 +01:00
|
|
|
// We don't need to call invalidate() because this table is not in cache
|
2001-09-02 12:47:00 +02:00
|
|
|
if ((error= (int) !(open_temporary_table(thd, path, table_list->db,
|
|
|
|
table_list->real_name, 1))))
|
|
|
|
(void) rm_temporary_table(table_type, path);
|
|
|
|
DBUG_RETURN(error ? -1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) sprintf(path,"%s/%s/%s%s",mysql_data_home,table_list->db,
|
|
|
|
table_list->real_name,reg_ext);
|
|
|
|
fn_format(path,path,"","",4);
|
|
|
|
|
|
|
|
if (!dont_send_ok)
|
|
|
|
{
|
|
|
|
db_type table_type;
|
|
|
|
if ((table_type=get_table_type(path)) == DB_TYPE_UNKNOWN)
|
|
|
|
{
|
|
|
|
my_error(ER_NO_SUCH_TABLE, MYF(0), table_list->real_name);
|
|
|
|
DBUG_RETURN(-1);
|
|
|
|
}
|
|
|
|
if (!ha_supports_generate(table_type))
|
|
|
|
{
|
|
|
|
/* Probably InnoDB table */
|
|
|
|
DBUG_RETURN(mysql_delete(thd,table_list, (COND*) 0, (ORDER*) 0,
|
2001-09-03 04:16:15 +02:00
|
|
|
HA_POS_ERROR, TL_WRITE, 0));
|
2001-09-02 12:47:00 +02:00
|
|
|
}
|
|
|
|
if (lock_and_wait_for_table_name(thd, table_list))
|
|
|
|
DBUG_RETURN(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bzero((char*) &create_info,sizeof(create_info));
|
|
|
|
*fn_ext(path)=0; // Remove the .frm extension
|
|
|
|
error= ha_create_table(path,&create_info,1) ? -1 : 0;
|
2001-12-02 13:34:01 +01:00
|
|
|
query_cache.invalidate(table_list);
|
2001-09-02 12:47:00 +02:00
|
|
|
|
2001-09-03 04:16:15 +02:00
|
|
|
if (!dont_send_ok)
|
2001-09-02 12:47:00 +02:00
|
|
|
{
|
2001-09-03 04:16:15 +02:00
|
|
|
if (!error)
|
2001-09-02 12:47:00 +02:00
|
|
|
{
|
2001-09-03 04:16:15 +02:00
|
|
|
mysql_update_log.write(thd,thd->query,thd->query_length);
|
|
|
|
if (mysql_bin_log.is_open())
|
|
|
|
{
|
|
|
|
Query_log_event qinfo(thd, thd->query);
|
|
|
|
mysql_bin_log.write(&qinfo);
|
|
|
|
}
|
|
|
|
send_ok(&thd->net); // This should return record count
|
2001-09-02 12:47:00 +02:00
|
|
|
}
|
2001-09-03 04:16:15 +02:00
|
|
|
unlock_table_name(thd, table_list);
|
2001-09-02 12:47:00 +02:00
|
|
|
}
|
2001-09-03 04:16:15 +02:00
|
|
|
else if (error)
|
|
|
|
unlock_table_name(thd, table_list);
|
2001-09-02 12:47:00 +02:00
|
|
|
DBUG_RETURN(error ? -1 : 0);
|
|
|
|
}
|