sql_update.cc 29.7 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
2

unknown's avatar
unknown committed
3 4 5 6
   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.
7

unknown's avatar
unknown committed
8 9 10 11
   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.
12

unknown's avatar
unknown committed
13 14 15 16 17
   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 */


18 19 20
/* Update of records 
   Multi-table updates were introduced by Monty and Sinisa <sinisa@mysql.com>
*/
unknown's avatar
unknown committed
21 22 23

#include "mysql_priv.h"
#include "sql_acl.h"
24
#include "sql_select.h"
unknown's avatar
unknown committed
25

26 27
static bool safe_update_on_fly(JOIN_TAB *join_tab, List<Item> *fields);

unknown's avatar
unknown committed
28 29
/* Return 0 if row hasn't changed */

30
static bool compare_record(TABLE *table, ulong query_id)
unknown's avatar
unknown committed
31 32
{
  if (!table->blob_fields)
unknown's avatar
unknown committed
33
    return cmp_record(table,record[1]);
unknown's avatar
unknown committed
34
  /* Compare null bits */
unknown's avatar
unknown committed
35 36 37 38
  if (memcmp(table->null_flags,
	     table->null_flags+table->rec_buff_length,
	     table->null_bytes))
    return 1;					// Diff in NULL value
unknown's avatar
unknown committed
39
  /* Compare updated fields */
unknown's avatar
unknown committed
40 41
  for (Field **ptr=table->field ; *ptr ; ptr++)
  {
42
    if ((*ptr)->query_id == query_id &&
unknown's avatar
unknown committed
43 44 45 46 47 48 49
	(*ptr)->cmp_binary_offset(table->rec_buff_length))
      return 1;
  }
  return 0;
}


50 51 52 53 54
int mysql_update(THD *thd,
                 TABLE_LIST *table_list,
                 List<Item> &fields,
		 List<Item> &values,
                 COND *conds,
55
                 uint order_num, ORDER *order,
unknown's avatar
unknown committed
56
		 ha_rows limit,
unknown's avatar
unknown committed
57
		 enum enum_duplicates handle_duplicates)
unknown's avatar
unknown committed
58
{
unknown's avatar
unknown committed
59 60
  bool 		using_limit=limit != HA_POS_ERROR;
  bool		safe_update= thd->options & OPTION_SAFE_UPDATES;
61
  bool		used_key_is_modified, transactional_table, log_delayed;
unknown's avatar
unknown committed
62
  int		error=0;
unknown's avatar
unknown committed
63
  uint		used_index, want_privilege;
64
  ulong		query_id=thd->query_id, timestamp_query_id;
65
  ha_rows	updated, found;
unknown's avatar
unknown committed
66 67 68 69
  key_map	old_used_keys;
  TABLE		*table;
  SQL_SELECT	*select;
  READ_RECORD	info;
unknown's avatar
unknown committed
70
  TABLE_LIST    *update_table_list= ((TABLE_LIST*) 
71
				     thd->lex->select_lex.table_list.first);
unknown's avatar
unknown committed
72 73
  TABLE_LIST    tables;
  List<Item>    all_fields;
unknown's avatar
unknown committed
74
  DBUG_ENTER("mysql_update");
unknown's avatar
unknown committed
75

unknown's avatar
unknown committed
76
  LINT_INIT(used_index);
unknown's avatar
unknown committed
77
  LINT_INIT(timestamp_query_id);
unknown's avatar
unknown committed
78

unknown's avatar
unknown committed
79
  if ((open_and_lock_tables(thd, table_list)))
80
    DBUG_RETURN(-1);
unknown's avatar
unknown committed
81
  thd->proc_info="init";
unknown's avatar
unknown committed
82
  table= table_list->table;
unknown's avatar
unknown committed
83 84
  table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK);

85 86
  /* Calculate "table->used_keys" based on the WHERE */
  table->used_keys=table->keys_in_use;
87
  table->quick_keys.clear_all();
unknown's avatar
unknown committed
88
#ifndef NO_EMBEDDED_ACCESS_CHECKS
89 90
  want_privilege=table->grant.want_privilege;
  table->grant.want_privilege=(SELECT_ACL & ~table->grant.privilege);
unknown's avatar
unknown committed
91
#endif
unknown's avatar
unknown committed
92 93

  bzero((char*) &tables,sizeof(tables));	// For ORDER BY
unknown's avatar
unknown committed
94
  tables.table= table;
unknown's avatar
unknown committed
95
  tables.alias= table_list->alias;
unknown's avatar
unknown committed
96

97
  if (setup_tables(update_table_list, 0) ||
unknown's avatar
unknown committed
98
      setup_conds(thd,update_table_list,&conds) ||
99 100
      thd->lex->select_lex.setup_ref_array(thd, order_num) ||
      setup_order(thd, thd->lex->select_lex.ref_pointer_array,
unknown's avatar
unknown committed
101
		  &tables, all_fields, all_fields, order) ||
102
      setup_ftfuncs(&thd->lex->select_lex))
103 104
    DBUG_RETURN(-1);				/* purecov: inspected */

unknown's avatar
unknown committed
105
  /* Check that we are not using table that we are updating in a sub select */
106 107 108
  if (find_real_table_in_list(table_list->next, 
			      table_list->db, table_list->real_name))
  {
unknown's avatar
unknown committed
109
    my_error(ER_UPDATE_TABLE_USED, MYF(0), table_list->real_name);
110 111 112
    DBUG_RETURN(-1);
  }

unknown's avatar
unknown committed
113
  old_used_keys= table->used_keys;		// Keys used in WHERE
unknown's avatar
unknown committed
114
  /*
115 116
    Change the query_id for the timestamp column so that we can
    check if this is modified directly
unknown's avatar
unknown committed
117
  */
118 119 120 121
  if (table->timestamp_field)
  {
    timestamp_query_id=table->timestamp_field->query_id;
    table->timestamp_field->query_id=thd->query_id-1;
unknown's avatar
unknown committed
122
    table->time_stamp= table->timestamp_field->offset() +1;
123
  }
unknown's avatar
unknown committed
124

125
  /* Check the fields we are going to modify */
unknown's avatar
unknown committed
126
#ifndef NO_EMBEDDED_ACCESS_CHECKS
127
  table->grant.want_privilege=want_privilege;
unknown's avatar
unknown committed
128
#endif
129
  if (setup_fields(thd, 0, update_table_list, fields, 1, 0, 0))
130 131 132 133 134 135 136 137 138
    DBUG_RETURN(-1);				/* purecov: inspected */
  if (table->timestamp_field)
  {
    // Don't set timestamp column if this is modified
    if (table->timestamp_field->query_id == thd->query_id)
      table->time_stamp=0;
    else
      table->timestamp_field->query_id=timestamp_query_id;
  }
139

unknown's avatar
unknown committed
140
#ifndef NO_EMBEDDED_ACCESS_CHECKS
141 142
  /* Check values */
  table->grant.want_privilege=(SELECT_ACL & ~table->grant.privilege);
unknown's avatar
unknown committed
143
#endif
144
  if (setup_fields(thd, 0, update_table_list, values, 0, 0, 0))
unknown's avatar
unknown committed
145
  {
146
    free_underlaid_joins(thd, &thd->lex->select_lex);
unknown's avatar
unknown committed
147 148
    DBUG_RETURN(-1);				/* purecov: inspected */
  }
unknown's avatar
unknown committed
149

150
  // Don't count on usage of 'only index' when calculating which key to use
151
  table->used_keys.clear_all();
unknown's avatar
unknown committed
152 153
  select=make_select(table,0,0,conds,&error);
  if (error ||
154
      (select && select->check_quick(thd, safe_update, limit)) || !limit)
unknown's avatar
unknown committed
155 156
  {
    delete select;
157
    free_underlaid_joins(thd, &thd->lex->select_lex);
unknown's avatar
unknown committed
158 159 160 161
    if (error)
    {
      DBUG_RETURN(-1);				// Error in where
    }
162
    send_ok(thd);				// No matching records
unknown's avatar
unknown committed
163 164 165
    DBUG_RETURN(0);
  }
  /* If running in safe sql mode, don't allow updates without keys */
166
  if (table->quick_keys.is_clear_all())
unknown's avatar
unknown committed
167
  {
168
    thd->server_status|=SERVER_QUERY_NO_INDEX_USED;
unknown's avatar
unknown committed
169
    if (safe_update && !using_limit)
170
    {
unknown's avatar
unknown committed
171 172 173
      my_message(ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE,
		 ER(ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE), MYF(0));
      goto err;
174
    }
unknown's avatar
unknown committed
175
  }
176
  init_ftfuncs(thd, &thd->lex->select_lex, 1);
unknown's avatar
unknown committed
177 178 179 180 181 182 183 184 185 186
  /* Check if we are modifying a key that we are used to search with */
  if (select && select->quick)
    used_key_is_modified= (!select->quick->unique_key_range() &&
			   check_if_key_used(table,
					     (used_index=select->quick->index),
					     fields));
  else if ((used_index=table->file->key_used_on_scan) < MAX_KEY)
    used_key_is_modified=check_if_key_used(table, used_index, fields);
  else
    used_key_is_modified=0;
unknown's avatar
unknown committed
187
  if (used_key_is_modified || order)
unknown's avatar
unknown committed
188 189
  {
    /*
unknown's avatar
unknown committed
190 191
      We can't update table directly;  We must first search after all
      matching rows before updating the table!
unknown's avatar
unknown committed
192
    */
unknown's avatar
unknown committed
193
    table->file->extra(HA_EXTRA_RETRIEVE_ALL_COLS);
194
    if (old_used_keys.is_set(used_index))
unknown's avatar
unknown committed
195 196 197 198
    {
      table->key_read=1;
      table->file->extra(HA_EXTRA_KEYREAD);
    }
199 200 201

    if (order)
    {
unknown's avatar
unknown committed
202 203 204 205
      /*
	Doing an ORDER BY;  Let filesort find and sort the rows we are going
	to update
      */
206 207
      uint         length;
      SORT_FIELD  *sortorder;
208
      ha_rows examined_rows;
209

unknown's avatar
unknown committed
210
      table->sort.io_cache = (IO_CACHE *) my_malloc(sizeof(IO_CACHE),
unknown's avatar
unknown committed
211
						    MYF(MY_FAE | MY_ZEROFILL));
unknown's avatar
unknown committed
212
      if (!(sortorder=make_unireg_sortorder(order, &length)) ||
unknown's avatar
unknown committed
213
          (table->sort.found_records = filesort(thd, table, sortorder, length,
unknown's avatar
unknown committed
214
						select, limit,
unknown's avatar
unknown committed
215
						&examined_rows))
216 217
          == HA_POS_ERROR)
      {
unknown's avatar
unknown committed
218
	free_io_cache(table);
219
	goto err;
220
      }
unknown's avatar
unknown committed
221 222 223 224 225 226
      /*
	Filesort has already found and selected the rows we want to update,
	so we don't need the where clause
      */
      delete select;
      select= 0;
227
    }
unknown's avatar
unknown committed
228
    else
unknown's avatar
unknown committed
229
    {
unknown's avatar
unknown committed
230 231 232 233 234 235 236 237 238
      /*
	We are doing a search on a key that is updated. In this case
	we go trough the matching rows, save a pointer to them and
	update these in a separate loop based on the pointer.
      */

      IO_CACHE tempfile;
      if (open_cached_file(&tempfile, mysql_tmpdir,TEMP_PREFIX,
			   DISK_BUFFER_SIZE, MYF(MY_WME)))
239
	goto err;
unknown's avatar
unknown committed
240 241 242 243

      init_read_record(&info,thd,table,select,0,1);
      thd->proc_info="Searching rows for update";
      uint tmp_limit= limit;
unknown's avatar
unknown committed
244

unknown's avatar
unknown committed
245
      while (!(error=info.read_record(&info)) && !thd->killed)
unknown's avatar
unknown committed
246
      {
unknown's avatar
unknown committed
247
	if (!(select && select->skipp_record()))
unknown's avatar
unknown committed
248
	{
unknown's avatar
unknown committed
249 250 251 252 253 254 255 256
	  table->file->position(table->record[0]);
	  if (my_b_write(&tempfile,table->file->ref,
			 table->file->ref_length))
	  {
	    error=1; /* purecov: inspected */
	    break; /* purecov: inspected */
	  }
	  if (!--limit && using_limit)
257 258
	  {
	    error= -1;
unknown's avatar
unknown committed
259
	    break;
260
	  }
unknown's avatar
unknown committed
261 262
	}
      }
263
      limit= tmp_limit;
unknown's avatar
unknown committed
264 265 266 267 268 269 270 271 272 273
      end_read_record(&info);
      /* Change select to use tempfile */
      if (select)
      {
	delete select->quick;
	if (select->free_cond)
	  delete select->cond;
	select->quick=0;
	select->cond=0;
      }
unknown's avatar
unknown committed
274 275
      else
      {
unknown's avatar
unknown committed
276 277
	select= new SQL_SELECT;
	select->head=table;
unknown's avatar
unknown committed
278
      }
unknown's avatar
unknown committed
279 280 281 282
      if (reinit_io_cache(&tempfile,READ_CACHE,0L,0,0))
	error=1; /* purecov: inspected */
      select->file=tempfile;			// Read row ptrs from this file
      if (error >= 0)
283
	goto err;
unknown's avatar
unknown committed
284 285 286 287 288 289 290 291
    }
    if (table->key_read)
    {
      table->key_read=0;
      table->file->extra(HA_EXTRA_NO_KEYREAD);
    }
  }

unknown's avatar
unknown committed
292 293
  if (handle_duplicates == DUP_IGNORE)
    table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
unknown's avatar
unknown committed
294 295
  init_read_record(&info,thd,table,select,0,1);

296
  updated= found= 0;
297
  thd->count_cuted_fields= CHECK_FIELD_WARN;		/* calc cuted fields */
unknown's avatar
unknown committed
298
  thd->cuted_fields=0L;
299
  thd->proc_info="Updating";
300
  query_id=thd->query_id;
unknown's avatar
unknown committed
301 302 303 304 305

  while (!(error=info.read_record(&info)) && !thd->killed)
  {
    if (!(select && select->skipp_record()))
    {
unknown's avatar
unknown committed
306
      store_record(table,record[1]);
unknown's avatar
unknown committed
307
      if (fill_record(fields,values, 0) || thd->net.report_error)
unknown's avatar
unknown committed
308
	break; /* purecov: inspected */
unknown's avatar
unknown committed
309
      found++;
310
      if (compare_record(table, query_id))
unknown's avatar
unknown committed
311 312 313 314 315 316 317 318 319 320 321 322 323 324
      {
	if (!(error=table->file->update_row((byte*) table->record[1],
					    (byte*) table->record[0])))
	{
	  updated++;
	}
	else if (handle_duplicates != DUP_IGNORE ||
		 error != HA_ERR_FOUND_DUPP_KEY)
	{
	  table->file->print_error(error,MYF(0));
	  error= 1;
	  break;
	}
      }
unknown's avatar
unknown committed
325 326 327 328 329
      if (!--limit && using_limit)
      {
	error= -1;				// Simulate end of file
	break;
      }
unknown's avatar
unknown committed
330
    }
unknown's avatar
unknown committed
331 332
    else
      table->file->unlock_row();
333
    thd->row_count++;
unknown's avatar
unknown committed
334 335
  }
  end_read_record(&info);
unknown's avatar
unknown committed
336
  free_io_cache(table);				// If ORDER BY
unknown's avatar
unknown committed
337
  thd->proc_info="end";
unknown's avatar
unknown committed
338
  VOID(table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY));
unknown's avatar
unknown committed
339 340 341 342 343 344 345 346

  /*
    Invalidate the table in the query cache if something changed.
    This must be before binlog writing and ha_autocommit_...
  */
  if (updated)
    query_cache_invalidate3(thd, table_list, 1);

347 348 349
  transactional_table= table->file->has_transactions();
  log_delayed= (transactional_table || table->tmp_table);
  if (updated && (error <= 0 || !transactional_table))
unknown's avatar
unknown committed
350
  {
351 352 353
    mysql_update_log.write(thd,thd->query,thd->query_length);
    if (mysql_bin_log.is_open())
    {
unknown's avatar
unknown committed
354 355
      if (error <= 0)
        thd->clear_error();
356
      Query_log_event qinfo(thd, thd->query, thd->query_length,
357 358 359
			    log_delayed);
      if (mysql_bin_log.write(&qinfo) && transactional_table)
	error=1;				// Rollback update
360
    }
361
    if (!log_delayed)
362
      thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
unknown's avatar
unknown committed
363
  }
unknown's avatar
unknown committed
364 365 366 367 368
  if (transactional_table)
  {
    if (ha_autocommit_or_rollback(thd, error >= 0))
      error=1;
  }
unknown's avatar
unknown committed
369

370 371 372 373 374 375
  if (thd->lock)
  {
    mysql_unlock_tables(thd, thd->lock);
    thd->lock=0;
  }

unknown's avatar
unknown committed
376
  delete select;
377
  free_underlaid_joins(thd, &thd->lex->select_lex);
unknown's avatar
unknown committed
378
  if (error >= 0)
379
    send_error(thd,thd->killed ? ER_SERVER_SHUTDOWN : 0); /* purecov: inspected */
unknown's avatar
unknown committed
380 381 382
  else
  {
    char buff[80];
383 384
    sprintf(buff, ER(ER_UPDATE_INFO), (ulong) found, (ulong) updated,
	    (ulong) thd->cuted_fields);
385
    send_ok(thd,
unknown's avatar
unknown committed
386 387 388 389
	    (thd->client_capabilities & CLIENT_FOUND_ROWS) ? found : updated,
	    thd->insert_id_used ? thd->insert_id() : 0L,buff);
    DBUG_PRINT("info",("%d records updated",updated));
  }
390
  thd->count_cuted_fields= CHECK_FIELD_IGNORE;		/* calc cuted fields */
unknown's avatar
unknown committed
391
  free_io_cache(table);
unknown's avatar
unknown committed
392
  DBUG_RETURN(0);
393 394 395

err:
  delete select;
396
  free_underlaid_joins(thd, &thd->lex->select_lex);
397 398 399 400 401 402
  if (table->key_read)
  {
    table->key_read=0;
    table->file->extra(HA_EXTRA_NO_KEYREAD);
  }
  DBUG_RETURN(-1);
unknown's avatar
unknown committed
403
}
404

unknown's avatar
unknown committed
405

406
/***************************************************************************
407
  Update multiple tables from join 
408 409
***************************************************************************/

unknown's avatar
unknown committed
410 411 412 413 414 415 416 417 418 419
/*
  Setup multi-update handling and call SELECT to do the join
*/

int mysql_multi_update(THD *thd,
		       TABLE_LIST *table_list,
		       List<Item> *fields,
		       List<Item> *values,
		       COND *conds,
		       ulong options,
unknown's avatar
unknown committed
420 421
		       enum enum_duplicates handle_duplicates,
		       SELECT_LEX_UNIT *unit, SELECT_LEX *select_lex)
422
{
unknown's avatar
unknown committed
423 424 425 426 427
  int res;
  multi_update *result;
  TABLE_LIST *tl;
  DBUG_ENTER("mysql_multi_update");

unknown's avatar
unknown committed
428
#ifndef NO_EMBEDDED_ACCESS_CHECKS
unknown's avatar
unknown committed
429
  table_list->grant.want_privilege=(SELECT_ACL & ~table_list->grant.privilege);
unknown's avatar
unknown committed
430
#endif
unknown's avatar
unknown committed
431 432 433
  if ((res=open_and_lock_tables(thd,table_list)))
    DBUG_RETURN(res);

unknown's avatar
unknown committed
434
  select_lex->select_limit= HA_POS_ERROR;
435 436 437 438 439 440 441 442 443 444 445 446 447

  table_map item_tables= 0, derived_tables= 0;
  if (thd->lex->derived_tables)
  {
    // Assign table map values to check updatability of derived tables
    uint tablenr=0;
    for (TABLE_LIST *table_list= (TABLE_LIST*) select_lex->table_list.first;
	 table_list;
	 table_list= table_list->next, tablenr++)
    {
      table_list->table->map= (table_map) 1 << tablenr;
    }
  }
448
  if (setup_fields(thd, 0, table_list, *fields, 1, 0, 0))
unknown's avatar
unknown committed
449
    DBUG_RETURN(-1);
450 451 452 453 454 455 456 457 458 459
  if (thd->lex->derived_tables)
  {
    // Find tables used in items
    List_iterator_fast<Item> it(*fields);
    Item *item;
    while ((item= it++))
    {
      item_tables|= item->used_tables();
    }
  }
unknown's avatar
unknown committed
460 461 462 463

  /*
    Count tables and setup timestamp handling
  */
464
  for (tl= select_lex->get_table_list() ; tl ; tl= tl->next)
465
  {
unknown's avatar
unknown committed
466
    TABLE *table= tl->table;
467 468
    if (table->timestamp_field)
    {
unknown's avatar
unknown committed
469 470 471 472
      table->time_stamp=0;
      // Only set timestamp column if this is not modified
      if (table->timestamp_field->query_id != thd->query_id)
	table->time_stamp= table->timestamp_field->offset() +1;
473
    }
474 475 476 477 478 479 480 481 482 483 484 485
    if (tl->derived)
      derived_tables|= table->map;
  }
  if (thd->lex->derived_tables && (item_tables & derived_tables))
  {
    // find derived table which cause error
    for (tl= select_lex->get_table_list() ; tl ; tl= tl->next)
    {
      if (tl->derived && (item_tables & tl->table->map))
	my_printf_error(ER_NON_UPDATABLE_TABLE, ER(ER_NON_UPDATABLE_TABLE),
			MYF(0), tl->alias, "UPDATE");
    }
486
  }
unknown's avatar
unknown committed
487 488 489 490 491 492

  if (!(result=new multi_update(thd, table_list, fields, values,
				handle_duplicates)))
    DBUG_RETURN(-1);

  List<Item> total_list;
493
  res= mysql_select(thd, &select_lex->ref_pointer_array,
unknown's avatar
unknown committed
494 495
		    select_lex->get_table_list(), select_lex->with_wild,
		    total_list,
496
		    conds, 0, (ORDER *) NULL, (ORDER *)NULL, (Item *) NULL,
unknown's avatar
unknown committed
497
		    (ORDER *)NULL,
unknown's avatar
unknown committed
498
		    options | SELECT_NO_JOIN_CACHE | SELECT_NO_UNLOCK,
499
		    result, unit, select_lex);
unknown's avatar
unknown committed
500 501
  delete result;
  DBUG_RETURN(res);
502 503
}

unknown's avatar
unknown committed
504 505 506 507

multi_update::multi_update(THD *thd_arg, TABLE_LIST *table_list,
			   List<Item> *field_list, List<Item> *value_list,
			   enum enum_duplicates handle_duplicates_arg)
508 509 510
  :all_tables(table_list), update_tables(0), thd(thd_arg), tmp_tables(0),
   updated(0), found(0), fields(field_list), values(value_list),
   table_count(0), copy_field(0), handle_duplicates(handle_duplicates_arg),
511
   do_update(1), trans_safe(0), transactional_tables(1)
unknown's avatar
unknown committed
512 513 514 515 516 517 518
{}


/*
  Connect fields with tables and create list of tables that are updated
*/

519 520
int multi_update::prepare(List<Item> &not_used_values,
			  SELECT_LEX_UNIT *lex_unit)
521
{
unknown's avatar
unknown committed
522 523 524 525 526 527 528
  TABLE_LIST *table_ref;
  SQL_LIST update;
  table_map tables_to_update= 0;
  Item_field *item;
  List_iterator_fast<Item> field_it(*fields);
  List_iterator_fast<Item> value_it(*values);
  uint i, max_fields;
529
  DBUG_ENTER("multi_update::prepare");
unknown's avatar
unknown committed
530

531
  thd->count_cuted_fields= CHECK_FIELD_WARN;
532
  thd->cuted_fields=0L;
unknown's avatar
unknown committed
533 534 535 536
  thd->proc_info="updating main table";

  while ((item= (Item_field *) field_it++))
    tables_to_update|= item->used_tables();
537

unknown's avatar
unknown committed
538
  if (!tables_to_update)
539
  {
unknown's avatar
unknown committed
540
    my_error(ER_NO_TABLES_USED, MYF(0));
unknown's avatar
unknown committed
541
    DBUG_RETURN(1);
542
  }
unknown's avatar
unknown committed
543

544
  /*
unknown's avatar
unknown committed
545 546
    We have to check values after setup_tables to get used_keys right in
    reference tables
547
  */
548

549
  if (setup_fields(thd, 0, all_tables, *values, 1, 0, 0))
550 551
    DBUG_RETURN(1);

552
  /*
unknown's avatar
unknown committed
553 554 555
    Save tables beeing updated in update_tables
    update_table->shared is position for table
    Don't use key read on tables that are updated
556
  */
unknown's avatar
unknown committed
557 558 559

  update.empty();
  for (table_ref= all_tables;  table_ref; table_ref=table_ref->next)
560
  {
unknown's avatar
unknown committed
561 562
    TABLE *table=table_ref->table;
    if (tables_to_update & table->map)
563
    {
unknown's avatar
unknown committed
564 565 566
      TABLE_LIST *tl= (TABLE_LIST*) thd->memdup((char*) table_ref,
						sizeof(*tl));
      if (!tl)
567
	DBUG_RETURN(1);
unknown's avatar
unknown committed
568 569 570
      update.link_in_list((byte*) tl, (byte**) &tl->next);
      tl->shared= table_count++;
      table->no_keyread=1;
571
      table->used_keys.clear_all();
unknown's avatar
unknown committed
572
      table->pos_in_table_list= tl;
573 574
    }
  }
unknown's avatar
unknown committed
575 576


unknown's avatar
unknown committed
577 578 579 580 581 582 583 584 585 586
  table_count=  update.elements;
  update_tables= (TABLE_LIST*) update.first;

  tmp_tables = (TABLE **) thd->calloc(sizeof(TABLE *) * table_count);
  tmp_table_param = (TMP_TABLE_PARAM*) thd->calloc(sizeof(TMP_TABLE_PARAM) *
						   table_count);
  fields_for_table= (List_item **) thd->alloc(sizeof(List_item *) *
					      table_count);
  values_for_table= (List_item **) thd->alloc(sizeof(List_item *) *
					      table_count);
587
  if (thd->is_fatal_error)
unknown's avatar
unknown committed
588 589 590 591 592 593
    DBUG_RETURN(1);
  for (i=0 ; i < table_count ; i++)
  {
    fields_for_table[i]= new List_item;
    values_for_table[i]= new List_item;
  }
594
  if (thd->is_fatal_error)
unknown's avatar
unknown committed
595 596 597 598 599 600 601 602 603 604 605 606
    DBUG_RETURN(1);

  /* Split fields into fields_for_table[] and values_by_table[] */

  field_it.rewind();
  while ((item= (Item_field *) field_it++))
  {
    Item *value= value_it++;
    uint offset= item->field->table->pos_in_table_list->shared;
    fields_for_table[offset]->push_back(item);
    values_for_table[offset]->push_back(value);
  }
607
  if (thd->is_fatal_error)
unknown's avatar
unknown committed
608 609 610 611 612 613 614
    DBUG_RETURN(1);

  /* Allocate copy fields */
  max_fields=0;
  for (i=0 ; i < table_count ; i++)
    set_if_bigger(max_fields, fields_for_table[i]->elements);
  copy_field= new Copy_field[max_fields];
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631

  /*
    Mark all copies of tables that are updates to ensure that
    init_read_record() will not try to enable a cache on them

    The problem is that for queries like

    UPDATE t1, t1 AS t2 SET t1.b=t2.c WHERE t1.a=t2.a;

    the row buffer may contain things that doesn't match what is on disk
    which will cause an error when reading a row.
    (This issue is mostly relevent for MyISAM tables)
  */
  for (table_ref= all_tables;  table_ref; table_ref=table_ref->next)
  {
    TABLE *table=table_ref->table;
    if (!(tables_to_update & table->map) && 
unknown's avatar
unknown committed
632 633
	find_real_table_in_list(update_tables, table_ref->db,
				table_ref->real_name))
634 635
      table->no_cache= 1;			// Disable row cache
  }
636
  DBUG_RETURN(thd->is_fatal_error != 0);
637 638 639
}


unknown's avatar
unknown committed
640
/*
641
  Initialize table for multi table
unknown's avatar
unknown committed
642

643 644 645 646
  IMPLEMENTATION
    - Update first table in join on the fly, if possible
    - Create temporary tables to store changed values for all other tables
      that are updated (and main_table if the above doesn't hold).
unknown's avatar
unknown committed
647 648 649
*/

bool
650 651
multi_update::initialize_tables(JOIN *join)
{
unknown's avatar
unknown committed
652 653 654 655 656 657 658 659
  TABLE_LIST *table_ref;
  DBUG_ENTER("initialize_tables");

  if ((thd->options & OPTION_SAFE_UPDATES) && error_if_full_join(join))
    DBUG_RETURN(1);
  main_table=join->join_tab->table;
  trans_safe= transactional_tables= main_table->file->has_transactions();
  log_delayed= trans_safe || main_table->tmp_table != NO_TMP_TABLE;
660 661 662
  table_to_update= 0;

  /* Create a temporary table for keys to all tables, except main table */
unknown's avatar
unknown committed
663
  for (table_ref= update_tables; table_ref; table_ref=table_ref->next)
664
  {
unknown's avatar
unknown committed
665
    TABLE *table=table_ref->table;
666
    uint cnt= table_ref->shared;
unknown's avatar
unknown committed
667
    Item_field *If;
668 669
    List<Item> temp_fields= *fields_for_table[cnt];
    ORDER     group;
unknown's avatar
unknown committed
670

671 672 673 674 675 676 677
    if (table == main_table)			// First table in join
    {
      if (safe_update_on_fly(join->join_tab, &temp_fields))
      {
	table_to_update= main_table;		// Update table on the fly
	continue;
      }
678
    }
679 680 681 682 683 684 685 686 687 688 689

    TMP_TABLE_PARAM *tmp_param= tmp_table_param+cnt;

    /*
      Create a temporary table to store all fields that are changed for this
      table. The first field in the temporary table is a pointer to the
      original row so that we can find and update it
    */

    /* ok to be on stack as this is not referenced outside of this func */
    Field_string offset(table->file->ref_length, 0, "offset",
unknown's avatar
unknown committed
690
			table, &my_charset_bin);
unknown's avatar
unknown committed
691 692 693 694
    if (!(If=new Item_field(((Field *) &offset))))
      DBUG_RETURN(1);
    If->maybe_null=0;
    if (temp_fields.push_front(If))
695 696 697 698 699 700 701 702 703 704 705 706 707 708
      DBUG_RETURN(1);

    /* Make an unique key over the first field to avoid duplicated updates */
    bzero((char*) &group, sizeof(group));
    group.asc= 1;
    group.item= (Item**) temp_fields.head_ref();

    tmp_param->quick_group=1;
    tmp_param->field_count=temp_fields.elements;
    tmp_param->group_parts=1;
    tmp_param->group_length= table->file->ref_length;
    if (!(tmp_tables[cnt]=create_tmp_table(thd,
					   tmp_param,
					   temp_fields,
unknown's avatar
unknown committed
709 710
					   (ORDER*) &group, 0, 0,
					   TMP_TABLE_ALL_COLUMNS,
711 712
					   HA_POS_ERROR,
					   (char *) "")))
713 714
      DBUG_RETURN(1);
    tmp_tables[cnt]->file->extra(HA_EXTRA_WRITE_CACHE);
715
  }
unknown's avatar
unknown committed
716
  DBUG_RETURN(0);
717 718
}

719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
/*
  Check if table is safe to update on fly

  SYNOPSIS
    safe_update_on_fly
    join_tab		How table is used in join
    fields		Fields that are updated

  NOTES
    We can update the first table in join on the fly if we know that
    a row in this tabel will never be read twice. This is true under
    the folloing conditions:

    - We are doing a table scan and the data is in a separate file (MyISAM) or
      if we don't update a clustered key.

    - We are doing a range scan and we don't update the scan key or
      the primary key for a clustered table handler.

  WARNING
    This code is a bit dependent of how make_join_readinfo() works.

  RETURN
    0		Not safe to update
    1		Safe to update
*/

static bool safe_update_on_fly(JOIN_TAB *join_tab, List<Item> *fields)
{
  TABLE *table= join_tab->table;
  switch (join_tab->type) {
  case JT_SYSTEM:
  case JT_CONST:
  case JT_EQ_REF:
    return 1;					// At most one matching row
  case JT_REF:
    return !check_if_key_used(table, join_tab->ref.key, *fields);
  case JT_ALL:
    /* If range search on index */
    if (join_tab->quick)
      return !check_if_key_used(table, join_tab->quick->index,
				*fields);
    /* If scanning in clustered key */
    if ((table->file->table_flags() & HA_PRIMARY_KEY_IN_READ_INDEX) &&
	table->primary_key < MAX_KEY)
      return !check_if_key_used(table, table->primary_key, *fields);
    return 1;
  default:
    break;					// Avoid compler warning
  }
  return 0;
}

772 773 774

multi_update::~multi_update()
{
unknown's avatar
unknown committed
775 776
  TABLE_LIST *table;
  for (table= update_tables ; table; table= table->next)
777
    table->table->no_keyread= table->table->no_cache= 0;
unknown's avatar
unknown committed
778

779 780
  if (tmp_tables)
  {
781 782 783 784 785 786 787 788
    for (uint cnt = 0; cnt < table_count; cnt++)
    {
      if (tmp_tables[cnt])
      {
	free_tmp_table(thd, tmp_tables[cnt]);
	tmp_table_param[cnt].cleanup();
      }
    }
789
  }
unknown's avatar
unknown committed
790 791
  if (copy_field)
    delete [] copy_field;
792
  thd->count_cuted_fields= CHECK_FIELD_IGNORE;		// Restore this setting
unknown's avatar
unknown committed
793 794
  if (!trans_safe)
    thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
795 796 797
}


unknown's avatar
unknown committed
798
bool multi_update::send_data(List<Item> &not_used_values)
799
{
unknown's avatar
unknown committed
800 801 802 803
  TABLE_LIST *cur_table;
  DBUG_ENTER("multi_update::send_data");

  for (cur_table= update_tables; cur_table ; cur_table= cur_table->next)
804
  {
unknown's avatar
unknown committed
805
    TABLE *table= cur_table->table;
806 807 808 809 810 811 812 813 814 815 816 817
    /*
      Check if we are using outer join and we didn't find the row
      or if we have already updated this row in the previous call to this
      function.

      The same row may be presented here several times in a join of type
      UPDATE t1 FROM t1,t2 SET t1.a=t2.a

      In this case we will do the update for the first found row combination.
      The join algorithm guarantees that we will not find the a row in
      t1 several times.
    */
unknown's avatar
unknown committed
818 819 820 821 822
    if (table->status & (STATUS_NULL_ROW | STATUS_UPDATED))
      continue;

    uint offset= cur_table->shared;
    table->file->position(table->record[0]);
823
    if (table == table_to_update)
824 825
    {
      table->status|= STATUS_UPDATED;
unknown's avatar
unknown committed
826
      store_record(table,record[1]);
unknown's avatar
unknown committed
827
      if (fill_record(*fields_for_table[offset], *values_for_table[offset], 0))
unknown's avatar
unknown committed
828
	DBUG_RETURN(1);
829
      found++;
unknown's avatar
unknown committed
830
      if (compare_record(table, thd->query_id))
831
      {
unknown's avatar
unknown committed
832 833
	int error;
	if (!updated++)
834
	{
unknown's avatar
unknown committed
835 836 837 838 839 840
	  /*
	    Inform the main table that we are going to update the table even
	    while we may be scanning it.  This will flush the read cache
	    if it's used.
	  */
	  main_table->file->extra(HA_EXTRA_PREPARE_FOR_UPDATE);
841
	}
unknown's avatar
unknown committed
842 843
	if ((error=table->file->update_row(table->record[1],
					   table->record[0])))
844 845
	{
	  table->file->print_error(error,MYF(0));
unknown's avatar
unknown committed
846 847
	  updated--;
	  DBUG_RETURN(1);
848 849
	}
      }
unknown's avatar
unknown committed
850 851 852 853 854
    }
    else
    {
      int error;
      TABLE *tmp_table= tmp_tables[offset];
855
      fill_record(tmp_table->field+1, *values_for_table[offset], 1);
856
      found++;
unknown's avatar
unknown committed
857 858 859 860 861 862 863
      /* Store pointer to row */
      memcpy((char*) tmp_table->field[0]->ptr,
	     (char*) table->file->ref, table->file->ref_length);
      /* Write row, ignoring duplicated updates to a row */
      if ((error= tmp_table->file->write_row(tmp_table->record[0])) &&
	  (error != HA_ERR_FOUND_DUPP_KEY &&
	   error != HA_ERR_FOUND_DUPP_UNIQUE))
864
      {
unknown's avatar
unknown committed
865
	if (create_myisam_from_heap(thd, tmp_table, tmp_table_param + offset,
unknown's avatar
unknown committed
866
				    error, 1))
867
	{
unknown's avatar
unknown committed
868 869
	  do_update=0;
	  DBUG_RETURN(1);			// Not a table_is_full error
870 871 872 873
	}
      }
    }
  }
unknown's avatar
unknown committed
874
  DBUG_RETURN(0);
875 876
}

unknown's avatar
unknown committed
877

878 879 880
void multi_update::send_error(uint errcode,const char *err)
{
  /* First send error what ever it is ... */
881
  ::send_error(thd,errcode,err);
882 883 884 885

  /* If nothing updated return */
  if (!updated)
    return;
886

887
  /* Something already updated so we have to invalidate cache */
888 889
  query_cache_invalidate3(thd, update_tables, 1);

890
  /*
unknown's avatar
unknown committed
891 892
    If all tables that has been updated are trans safe then just do rollback.
    If not attempt to do remaining updates.
893
  */
unknown's avatar
unknown committed
894 895

  if (trans_safe)
896
    ha_rollback_stmt(thd);
unknown's avatar
unknown committed
897 898 899 900 901
  else if (do_update && table_count > 1)
  {
    /* Add warning here */
    VOID(do_updates(0));
  }
902 903 904
}


unknown's avatar
unknown committed
905
int multi_update::do_updates(bool from_send_error)
906
{
unknown's avatar
unknown committed
907 908 909 910 911
  TABLE_LIST *cur_table;
  int local_error;
  ha_rows org_updated;
  TABLE *table;
  DBUG_ENTER("do_updates");
unknown's avatar
unknown committed
912
  
unknown's avatar
unknown committed
913

unknown's avatar
unknown committed
914
  do_update= 0;					// Don't retry this function  
915
  if (!found)
unknown's avatar
unknown committed
916
    DBUG_RETURN(0);
unknown's avatar
unknown committed
917
  for (cur_table= update_tables; cur_table ; cur_table= cur_table->next)
918
  {
unknown's avatar
unknown committed
919
    table = cur_table->table;
920
    if (table == table_to_update)
unknown's avatar
unknown committed
921
      continue;					// Already updated
922

unknown's avatar
unknown committed
923 924 925 926 927 928 929 930 931 932 933 934 935
    org_updated= updated;
    byte *ref_pos;
    TABLE *tmp_table= tmp_tables[cur_table->shared];
    tmp_table->file->extra(HA_EXTRA_CACHE);	// Change to read cache
    table->file->extra(HA_EXTRA_NO_CACHE);

    /*
      Setup copy functions to copy fields from temporary table
    */
    List_iterator_fast<Item> field_it(*fields_for_table[cur_table->shared]);
    Field **field= tmp_table->field+1;		// Skip row pointer
    Copy_field *copy_field_ptr= copy_field, *copy_field_end;
    for ( ; *field ; field++)
936
    {
unknown's avatar
unknown committed
937 938
      Item_field *item= (Item_field* ) field_it++;
      (copy_field_ptr++)->set(item->field, *field, 0);
939
    }
unknown's avatar
unknown committed
940 941 942 943 944 945 946
    copy_field_end=copy_field_ptr;

    if ((local_error = tmp_table->file->rnd_init(1)))
      goto err;

    ref_pos= (byte*) tmp_table->field[0]->ptr;
    for (;;)
947
    {
unknown's avatar
unknown committed
948 949 950 951 952 953 954 955 956 957 958 959
      if (thd->killed && trans_safe)
	goto err;
      if ((local_error=tmp_table->file->rnd_next(tmp_table->record[0])))
      {
	if (local_error == HA_ERR_END_OF_FILE)
	  break;
	if (local_error == HA_ERR_RECORD_DELETED)
	  continue;				// May happen on dup key
	goto err;
      }
      if ((local_error= table->file->rnd_pos(table->record[0], ref_pos)))
	goto err;
960
      table->status|= STATUS_UPDATED;
unknown's avatar
unknown committed
961
      store_record(table,record[1]);
unknown's avatar
unknown committed
962 963 964 965 966 967 968 969

      /* Copy data from temporary table to current table */
      for (copy_field_ptr=copy_field;
	   copy_field_ptr != copy_field_end;
	   copy_field_ptr++)
	(*copy_field_ptr->do_copy)(copy_field_ptr);

      if (compare_record(table, thd->query_id))
970
      {
unknown's avatar
unknown committed
971 972 973 974 975 976 977 978 979 980
	if ((local_error=table->file->update_row(table->record[1],
						 table->record[0])))
	{
	  if (local_error != HA_ERR_FOUND_DUPP_KEY ||
	      handle_duplicates != DUP_IGNORE)
	    goto err;
	}
	updated++;
	if (table->tmp_table != NO_TMP_TABLE)
	  log_delayed= 1;
981
      }
unknown's avatar
unknown committed
982 983 984 985 986 987 988 989
    }

    if (updated != org_updated)
    {
      if (table->tmp_table != NO_TMP_TABLE)
	log_delayed= 1;				// Tmp tables forces delay log
      if (table->file->has_transactions())
	log_delayed= transactional_tables= 1;
990
      else
unknown's avatar
unknown committed
991
	trans_safe= 0;				// Can't do safe rollback
992 993
    }
  }
unknown's avatar
unknown committed
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
  DBUG_RETURN(0);

err:
  if (!from_send_error)
    table->file->print_error(local_error,MYF(0));

  if (updated != org_updated)
  {
    if (table->tmp_table != NO_TMP_TABLE)
      log_delayed= 1;
    if (table->file->has_transactions())
      log_delayed= transactional_tables= 1;
    else
      trans_safe= 0;
  }
  DBUG_RETURN(1);
1010 1011 1012
}


unknown's avatar
unknown committed
1013 1014
/* out: 1 if error, 0 if success */

1015 1016
bool multi_update::send_eof()
{
unknown's avatar
unknown committed
1017 1018
  char buff[80];
  thd->proc_info="updating reference tables";
1019 1020

  /* Does updates for the last n - 1 tables, returns 0 if ok */
unknown's avatar
unknown committed
1021
  int local_error = (table_count) ? do_updates(0) : 0;
1022
  thd->proc_info= "end";
1023

unknown's avatar
unknown committed
1024 1025 1026 1027 1028 1029 1030 1031
  /* We must invalidate the query cache before binlog writing and
  ha_autocommit_... */

  if (updated)
  {
    query_cache_invalidate3(thd, update_tables, 1);
  }

unknown's avatar
unknown committed
1032 1033
  /*
    Write the SQL statement to the binlog if we updated
unknown's avatar
unknown committed
1034 1035
    rows and we succeeded or if we updated some non
    transacational tables
unknown's avatar
unknown committed
1036
  */
1037

unknown's avatar
unknown committed
1038
  if (updated && (local_error <= 0 || !trans_safe))
1039 1040
  {
    mysql_update_log.write(thd,thd->query,thd->query_length);
unknown's avatar
unknown committed
1041 1042
    if (mysql_bin_log.is_open())
    {
unknown's avatar
unknown committed
1043 1044
      if (local_error <= 0)
        thd->clear_error();
unknown's avatar
unknown committed
1045 1046 1047
      Query_log_event qinfo(thd, thd->query, thd->query_length,
			    log_delayed);
      if (mysql_bin_log.write(&qinfo) && trans_safe)
1048
	local_error= 1;				// Rollback update
unknown's avatar
unknown committed
1049 1050 1051 1052
    }
    if (!log_delayed)
      thd->options|=OPTION_STATUS_NO_TRANS_UPDATE;
  }
1053

unknown's avatar
unknown committed
1054 1055
  if (transactional_tables)
  {
1056
    if (ha_autocommit_or_rollback(thd, local_error != 0))
unknown's avatar
unknown committed
1057 1058
      local_error=1;
  }
1059

unknown's avatar
unknown committed
1060 1061 1062 1063 1064
  if (local_error > 0) // if the above log write did not fail ...
  {
    /* Safety: If we haven't got an error before (should not happen) */
    my_message(ER_UNKNOWN_ERROR, "An error occured in multi-table update",
	       MYF(0));
unknown's avatar
unknown committed
1065
    ::send_error(thd);
unknown's avatar
unknown committed
1066
    return 1;
1067
  }
unknown's avatar
unknown committed
1068 1069


1070 1071
  sprintf(buff, ER(ER_UPDATE_INFO), (ulong) found, (ulong) updated,
	  (ulong) thd->cuted_fields);
unknown's avatar
unknown committed
1072
  ::send_ok(thd,
unknown's avatar
unknown committed
1073 1074
	    (thd->client_capabilities & CLIENT_FOUND_ROWS) ? found : updated,
	    thd->insert_id_used ? thd->insert_id() : 0L,buff);
1075 1076
  return 0;
}