mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
sql_delete.cc, sql_update.cc, sql_class.h:
Simplification of the previous fix for multi-update/delete.
This commit is contained in:
@ -234,10 +234,9 @@ extern "C" int refposcmp2(void* arg, const void *a,const void *b)
|
||||
|
||||
multi_delete::multi_delete(THD *thd_arg, TABLE_LIST *dt,
|
||||
uint num_of_tables_arg)
|
||||
: delete_tables(dt), thd(thd_arg), deleted(0),
|
||||
: delete_tables(dt), thd(thd_arg), deleted(0), found(0),
|
||||
num_of_tables(num_of_tables_arg), error(0),
|
||||
do_delete(0), transactional_tables(0), log_delayed(0), normal_tables(0),
|
||||
tempfiles_inited(0)
|
||||
do_delete(0), transactional_tables(0), log_delayed(0), normal_tables(0)
|
||||
{
|
||||
tempfiles = (Unique **) sql_calloc(sizeof(Unique *) * (num_of_tables-1));
|
||||
}
|
||||
@ -298,7 +297,6 @@ multi_delete::initialize_tables(JOIN *join)
|
||||
table->file->ref_length,
|
||||
MEM_STRIP_BUF_SIZE);
|
||||
}
|
||||
tempfiles_inited= 1;
|
||||
init_ftfuncs(thd,1);
|
||||
DBUG_RETURN(thd->fatal_error != 0);
|
||||
}
|
||||
@ -339,6 +337,7 @@ bool multi_delete::send_data(List<Item> &values)
|
||||
continue;
|
||||
|
||||
table->file->position(table->record[0]);
|
||||
found++;
|
||||
|
||||
if (secure_counter < 0)
|
||||
{
|
||||
@ -414,7 +413,7 @@ int multi_delete::do_deletes(bool from_send_error)
|
||||
|
||||
if (from_send_error)
|
||||
{
|
||||
/* Found out table number for 'table_being_deleted' */
|
||||
/* Found out table number for 'table_being_deleted*/
|
||||
for (TABLE_LIST *aux=delete_tables;
|
||||
aux != table_being_deleted;
|
||||
aux=aux->next)
|
||||
@ -424,7 +423,7 @@ int multi_delete::do_deletes(bool from_send_error)
|
||||
table_being_deleted = delete_tables;
|
||||
|
||||
do_delete= 0;
|
||||
if (!tempfiles_inited)
|
||||
if (!found)
|
||||
DBUG_RETURN(0);
|
||||
for (table_being_deleted=table_being_deleted->next;
|
||||
table_being_deleted ;
|
||||
|
Reference in New Issue
Block a user