~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2006 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
17
/* Insert of records */
18
19
/*
20
  INSERT DELAYED
21
22
  Drizzle has a different form of DELAYED then MySQL. DELAYED is just
23
  a hint to the the sorage engine (which can then do whatever it likes.
24
*/
243.1.17 by Jay Pipes
FINAL PHASE removal of mysql_priv.h (Bye, bye my friend.)
25
#include <drizzled/server_includes.h>
26
#include <drizzled/sql_select.h>
575.4.7 by Monty Taylor
More header cleanup.
27
#include <drizzled/show.h>
549 by Monty Taylor
Took gettext.h out of header files.
28
#include <drizzled/error.h>
584.4.4 by Monty Taylor
Split out Name_resolution_context.
29
#include <drizzled/name_resolution_context_state.h>
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
30
#include <drizzled/sql_parse.h>
520.7.1 by Monty Taylor
Moved hash.c to drizzled.
31
#include <drizzled/probes.h>
575.1.3 by Monty Taylor
Moved some stuff out of handler.h.
32
#include <drizzled/tableop_hooks.h>
584.1.15 by Monty Taylor
The mega-patch from hell. Renamed sql_class to session (since that's what it is) and removed it and field and table from common_includes.
33
#include <drizzled/sql_base.h>
34
#include <drizzled/sql_load.h>
584.5.1 by Monty Taylor
Removed field includes from field.h.
35
#include <drizzled/field/timestamp.h>
670.2.4 by Monty Taylor
Removed more stuff from the headers.
36
#include <drizzled/lock.h>
1 by brian
clean slate
37
38
39
/*
40
  Check if insert fields are correct.
41
42
  SYNOPSIS
43
    check_insert_fields()
520.1.22 by Brian Aker
Second pass of thd cleanup
44
    session                         The current thread.
1 by brian
clean slate
45
    table                       The table for insert.
46
    fields                      The insert fields.
47
    values                      The insert values.
48
    check_unique                If duplicate values should be rejected.
49
50
  NOTE
51
    Clears TIMESTAMP_AUTO_SET_ON_INSERT from table->timestamp_field_type
52
    or leaves it as is, depending on if timestamp should be updated or
53
    not.
54
55
  RETURN
56
    0           OK
57
    -1          Error
58
*/
59
520.1.22 by Brian Aker
Second pass of thd cleanup
60
static int check_insert_fields(Session *session, TableList *table_list,
1 by brian
clean slate
61
                               List<Item> &fields, List<Item> &values,
77.1.45 by Monty Taylor
Warning fixes.
62
                               bool check_unique,
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
63
                               table_map *)
1 by brian
clean slate
64
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
65
  Table *table= table_list->table;
1 by brian
clean slate
66
67
  if (fields.elements == 0 && values.elements != 0)
68
  {
69
    if (values.elements != table->s->fields)
70
    {
71
      my_error(ER_WRONG_VALUE_COUNT_ON_ROW, MYF(0), 1L);
72
      return -1;
73
    }
74
    clear_timestamp_auto_bits(table->timestamp_field_type,
75
                              TIMESTAMP_AUTO_SET_ON_INSERT);
76
    /*
77
      No fields are provided so all fields must be provided in the values.
78
      Thus we set all bits in the write set.
79
    */
80
    bitmap_set_all(table->write_set);
81
  }
82
  else
83
  {						// Part field list
520.1.22 by Brian Aker
Second pass of thd cleanup
84
    SELECT_LEX *select_lex= &session->lex->select_lex;
1 by brian
clean slate
85
    Name_resolution_context *context= &select_lex->context;
86
    Name_resolution_context_state ctx_state;
87
    int res;
88
89
    if (fields.elements != values.elements)
90
    {
91
      my_error(ER_WRONG_VALUE_COUNT_ON_ROW, MYF(0), 1L);
92
      return -1;
93
    }
94
520.1.22 by Brian Aker
Second pass of thd cleanup
95
    session->dup_field= 0;
1 by brian
clean slate
96
97
    /* Save the state of the current name resolution context. */
98
    ctx_state.save_state(context, table_list);
99
100
    /*
101
      Perform name resolution only in the first table - 'table_list',
102
      which is the table that is inserted into.
103
    */
104
    table_list->next_local= 0;
105
    context->resolve_in_table_list_only(table_list);
520.1.22 by Brian Aker
Second pass of thd cleanup
106
    res= setup_fields(session, 0, fields, MARK_COLUMNS_WRITE, 0, 0);
1 by brian
clean slate
107
108
    /* Restore the current context. */
109
    ctx_state.restore_state(context, table_list);
110
111
    if (res)
112
      return -1;
113
520.1.22 by Brian Aker
Second pass of thd cleanup
114
    if (check_unique && session->dup_field)
1 by brian
clean slate
115
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
116
      my_error(ER_FIELD_SPECIFIED_TWICE, MYF(0), session->dup_field->field_name);
1 by brian
clean slate
117
      return -1;
118
    }
119
    if (table->timestamp_field)	// Don't automaticly set timestamp if used
120
    {
121
      if (bitmap_is_set(table->write_set,
122
                        table->timestamp_field->field_index))
123
        clear_timestamp_auto_bits(table->timestamp_field_type,
124
                                  TIMESTAMP_AUTO_SET_ON_INSERT);
125
      else
126
      {
127
        bitmap_set_bit(table->write_set,
128
                       table->timestamp_field->field_index);
129
      }
130
    }
383.7.1 by Andrey Zhakov
Initial submit of code and tests
131
    /* Mark all virtual columns for write*/
132
    if (table->vfield)
133
      table->mark_virtual_columns();
1 by brian
clean slate
134
  }
135
136
  return 0;
137
}
138
139
140
/*
141
  Check update fields for the timestamp field.
142
143
  SYNOPSIS
144
    check_update_fields()
520.1.22 by Brian Aker
Second pass of thd cleanup
145
    session                         The current thread.
1 by brian
clean slate
146
    insert_table_list           The insert table list.
147
    table                       The table for update.
148
    update_fields               The update fields.
149
150
  NOTE
151
    If the update fields include the timestamp field,
152
    remove TIMESTAMP_AUTO_SET_ON_UPDATE from table->timestamp_field_type.
153
154
  RETURN
155
    0           OK
156
    -1          Error
157
*/
158
520.1.22 by Brian Aker
Second pass of thd cleanup
159
static int check_update_fields(Session *session, TableList *insert_table_list,
77.1.45 by Monty Taylor
Warning fixes.
160
                               List<Item> &update_fields,
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
161
                               table_map *)
1 by brian
clean slate
162
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
163
  Table *table= insert_table_list->table;
199 by Brian Aker
my_bool...
164
  bool timestamp_mark= false;
1 by brian
clean slate
165
166
  if (table->timestamp_field)
167
  {
168
    /*
169
      Unmark the timestamp field so that we can check if this is modified
170
      by update_fields
171
    */
172
    timestamp_mark= bitmap_test_and_clear(table->write_set,
173
                                          table->timestamp_field->field_index);
174
  }
175
176
  /* Check the fields we are going to modify */
520.1.22 by Brian Aker
Second pass of thd cleanup
177
  if (setup_fields(session, 0, update_fields, MARK_COLUMNS_WRITE, 0, 0))
1 by brian
clean slate
178
    return -1;
179
180
  if (table->timestamp_field)
181
  {
182
    /* Don't set timestamp column if this is modified. */
183
    if (bitmap_is_set(table->write_set,
184
                      table->timestamp_field->field_index))
185
      clear_timestamp_auto_bits(table->timestamp_field_type,
186
                                TIMESTAMP_AUTO_SET_ON_UPDATE);
187
    if (timestamp_mark)
188
      bitmap_set_bit(table->write_set,
189
                     table->timestamp_field->field_index);
190
  }
191
  return 0;
192
}
193
194
195
/**
196
  Upgrade table-level lock of INSERT statement to TL_WRITE if
197
  a more concurrent lock is infeasible for some reason. This is
198
  necessary for engines without internal locking support (MyISAM).
199
  An engine with internal locking implementation might later
200
  downgrade the lock in handler::store_lock() method.
201
*/
202
203
static
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
204
void upgrade_lock_type(Session *,
77.1.45 by Monty Taylor
Warning fixes.
205
                       thr_lock_type *lock_type,
1 by brian
clean slate
206
                       enum_duplicates duplic,
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
207
                       bool )
1 by brian
clean slate
208
{
209
  if (duplic == DUP_UPDATE ||
210
      (duplic == DUP_REPLACE && *lock_type == TL_WRITE_CONCURRENT_INSERT))
211
  {
212
    *lock_type= TL_WRITE_DEFAULT;
213
    return;
214
  }
215
}
216
217
218
/**
219
  INSERT statement implementation
220
221
  @note Like implementations of other DDL/DML in MySQL, this function
222
  relies on the caller to close the thread tables. This is done in the
223
  end of dispatch_command().
224
*/
225
520.1.22 by Brian Aker
Second pass of thd cleanup
226
bool mysql_insert(Session *session,TableList *table_list,
1 by brian
clean slate
227
                  List<Item> &fields,
228
                  List<List_item> &values_list,
229
                  List<Item> &update_fields,
230
                  List<Item> &update_values,
231
                  enum_duplicates duplic,
232
		  bool ignore)
233
{
234
  int error;
163 by Brian Aker
Merge Monty's code.
235
  bool transactional_table, joins_freed= false;
1 by brian
clean slate
236
  bool changed;
237
  bool was_insert_delayed= (table_list->lock_type ==  TL_WRITE_DELAYED);
482 by Brian Aker
Remove uint.
238
  uint32_t value_count;
1 by brian
clean slate
239
  ulong counter = 1;
151 by Brian Aker
Ulonglong to uint64_t
240
  uint64_t id;
1 by brian
clean slate
241
  COPY_INFO info;
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
242
  Table *table= 0;
1 by brian
clean slate
243
  List_iterator_fast<List_item> its(values_list);
244
  List_item *values;
245
  Name_resolution_context *context;
246
  Name_resolution_context_state ctx_state;
247
  thr_lock_type lock_type;
248
  Item *unused_conds= 0;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
249
1 by brian
clean slate
250
251
  /*
252
    Upgrade lock type if the requested lock is incompatible with
253
    the current connection mode or table operation.
254
  */
520.1.22 by Brian Aker
Second pass of thd cleanup
255
  upgrade_lock_type(session, &table_list->lock_type, duplic,
1 by brian
clean slate
256
                    values_list.elements > 1);
257
258
  /*
259
    We can't write-delayed into a table locked with LOCK TABLES:
260
    this will lead to a deadlock, since the delayed thread will
261
    never be able to get a lock on the table. QQQ: why not
262
    upgrade the lock here instead?
263
  */
520.1.22 by Brian Aker
Second pass of thd cleanup
264
  if (table_list->lock_type == TL_WRITE_DELAYED && session->locked_tables &&
265
      find_locked_table(session, table_list->db, table_list->table_name))
1 by brian
clean slate
266
  {
267
    my_error(ER_DELAYED_INSERT_TABLE_LOCKED, MYF(0),
268
             table_list->table_name);
163 by Brian Aker
Merge Monty's code.
269
    return(true);
1 by brian
clean slate
270
  }
271
272
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
273
    if (open_and_lock_tables(session, table_list))
163 by Brian Aker
Merge Monty's code.
274
      return(true);
1 by brian
clean slate
275
  }
276
  lock_type= table_list->lock_type;
277
520.1.22 by Brian Aker
Second pass of thd cleanup
278
  session->set_proc_info("init");
279
  session->used_tables=0;
1 by brian
clean slate
280
  values= its++;
281
  value_count= values->elements;
282
520.1.22 by Brian Aker
Second pass of thd cleanup
283
  if (mysql_prepare_insert(session, table_list, table, fields, values,
1 by brian
clean slate
284
			   update_fields, update_values, duplic, &unused_conds,
163 by Brian Aker
Merge Monty's code.
285
                           false,
1 by brian
clean slate
286
                           (fields.elements || !value_count ||
287
                            (0) != 0), !ignore))
288
    goto abort;
289
290
  /* mysql_prepare_insert set table_list->table if it was not set */
291
  table= table_list->table;
292
520.1.22 by Brian Aker
Second pass of thd cleanup
293
  context= &session->lex->select_lex.context;
1 by brian
clean slate
294
  /*
295
    These three asserts test the hypothesis that the resetting of the name
296
    resolution context below is not necessary at all since the list of local
297
    tables for INSERT always consists of one table.
298
  */
51.2.2 by Patrick Galbraith
Removed DBUGs from
299
  assert(!table_list->next_local);
300
  assert(!context->table_list->next_local);
301
  assert(!context->first_name_resolution_table->next_name_resolution_table);
1 by brian
clean slate
302
303
  /* Save the state of the current name resolution context. */
304
  ctx_state.save_state(context, table_list);
305
306
  /*
307
    Perform name resolution only in the first table - 'table_list',
308
    which is the table that is inserted into.
309
  */
310
  table_list->next_local= 0;
311
  context->resolve_in_table_list_only(table_list);
312
313
  while ((values= its++))
314
  {
315
    counter++;
316
    if (values->elements != value_count)
317
    {
318
      my_error(ER_WRONG_VALUE_COUNT_ON_ROW, MYF(0), counter);
319
      goto abort;
320
    }
520.1.22 by Brian Aker
Second pass of thd cleanup
321
    if (setup_fields(session, 0, *values, MARK_COLUMNS_READ, 0, 0))
1 by brian
clean slate
322
      goto abort;
323
  }
324
  its.rewind ();
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
325
1 by brian
clean slate
326
  /* Restore the current context. */
327
  ctx_state.restore_state(context, table_list);
328
329
  /*
330
    Fill in the given fields and dump it to the table file
331
  */
212.6.6 by Mats Kindahl
Removing redundant use of casts in drizzled/ for memcmp(), memcpy(), memset(), and memmove().
332
  memset(&info, 0, sizeof(info));
1 by brian
clean slate
333
  info.ignore= ignore;
334
  info.handle_duplicates=duplic;
335
  info.update_fields= &update_fields;
336
  info.update_values= &update_values;
337
338
  /*
339
    Count warnings for all inserts.
340
    For single line insert, generate an error if try to set a NOT NULL field
341
    to NULL.
342
  */
520.1.22 by Brian Aker
Second pass of thd cleanup
343
  session->count_cuted_fields= ((values_list.elements == 1 &&
1 by brian
clean slate
344
                             !ignore) ?
345
			    CHECK_FIELD_ERROR_FOR_NULL :
346
			    CHECK_FIELD_WARN);
520.1.22 by Brian Aker
Second pass of thd cleanup
347
  session->cuted_fields = 0L;
1 by brian
clean slate
348
  table->next_number_field=table->found_next_number_field;
349
350
  error=0;
520.1.22 by Brian Aker
Second pass of thd cleanup
351
  session->set_proc_info("update");
1 by brian
clean slate
352
  if (duplic == DUP_REPLACE)
353
    table->file->extra(HA_EXTRA_WRITE_CAN_REPLACE);
354
  if (duplic == DUP_UPDATE)
355
    table->file->extra(HA_EXTRA_INSERT_WITH_UPDATE);
356
  {
357
    if (duplic != DUP_ERROR || ignore)
358
      table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
359
    table->file->ha_start_bulk_insert(values_list.elements);
360
  }
361
362
520.1.22 by Brian Aker
Second pass of thd cleanup
363
  session->abort_on_warning= !ignore;
1 by brian
clean slate
364
365
  table->mark_columns_needed_for_insert();
366
367
  while ((values= its++))
368
  {
369
    if (fields.elements || !value_count)
370
    {
371
      restore_record(table,s->default_values);	// Get empty record
520.1.22 by Brian Aker
Second pass of thd cleanup
372
      if (fill_record(session, fields, *values, 0))
1 by brian
clean slate
373
      {
520.1.22 by Brian Aker
Second pass of thd cleanup
374
	if (values_list.elements != 1 && ! session->is_error())
1 by brian
clean slate
375
	{
376
	  info.records++;
377
	  continue;
378
	}
379
	/*
520.1.22 by Brian Aker
Second pass of thd cleanup
380
	  TODO: set session->abort_on_warning if values_list.elements == 1
1 by brian
clean slate
381
	  and check that all items return warning in case of problem with
382
	  storing field.
383
        */
384
	error=1;
385
	break;
386
      }
387
    }
388
    else
389
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
390
      if (session->used_tables)			// Column used in values()
1 by brian
clean slate
391
	restore_record(table,s->default_values);	// Get empty record
392
      else
393
      {
394
        /*
395
          Fix delete marker. No need to restore rest of record since it will
396
          be overwritten by fill_record() anyway (and fill_record() does not
397
          use default values in this case).
398
        */
399
	table->record[0][0]= table->s->default_values[0];
400
      }
520.1.22 by Brian Aker
Second pass of thd cleanup
401
      if (fill_record(session, table->field, *values, 0))
1 by brian
clean slate
402
      {
520.1.22 by Brian Aker
Second pass of thd cleanup
403
	if (values_list.elements != 1 && ! session->is_error())
1 by brian
clean slate
404
	{
405
	  info.records++;
406
	  continue;
407
	}
408
	error=1;
409
	break;
410
      }
411
    }
412
520.1.22 by Brian Aker
Second pass of thd cleanup
413
    error=write_record(session, table ,&info);
1 by brian
clean slate
414
    if (error)
415
      break;
520.1.22 by Brian Aker
Second pass of thd cleanup
416
    session->row_count++;
1 by brian
clean slate
417
  }
418
520.1.22 by Brian Aker
Second pass of thd cleanup
419
  free_underlaid_joins(session, &session->lex->select_lex);
163 by Brian Aker
Merge Monty's code.
420
  joins_freed= true;
1 by brian
clean slate
421
422
  /*
423
    Now all rows are inserted.  Time to update logs and sends response to
424
    user
425
  */
426
  {
427
    /*
428
      Do not do this release if this is a delayed insert, it would steal
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
429
      auto_inc values from the delayed_insert thread as they share Table.
1 by brian
clean slate
430
    */
431
    table->file->ha_release_auto_increment();
432
    if (table->file->ha_end_bulk_insert() && !error)
433
    {
434
      table->file->print_error(my_errno,MYF(0));
435
      error=1;
436
    }
437
    if (duplic != DUP_ERROR || ignore)
438
      table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
439
440
    transactional_table= table->file->has_transactions();
441
442
    if ((changed= (info.copied || info.deleted || info.updated)))
443
    {
444
      /*
445
        Invalidate the table in the query cache if something changed.
446
        For the transactional algorithm to work the invalidation must be
447
        before binlog writing and ha_autocommit_or_rollback
448
      */
449
    }
520.1.22 by Brian Aker
Second pass of thd cleanup
450
    if ((changed && error <= 0) || session->transaction.stmt.modified_non_trans_table || was_insert_delayed)
1 by brian
clean slate
451
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
452
      if (session->transaction.stmt.modified_non_trans_table)
453
	session->transaction.all.modified_non_trans_table= true;
1 by brian
clean slate
454
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
455
    assert(transactional_table || !changed ||
520.1.22 by Brian Aker
Second pass of thd cleanup
456
                session->transaction.stmt.modified_non_trans_table);
1 by brian
clean slate
457
458
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
459
  session->set_proc_info("end");
1 by brian
clean slate
460
  /*
461
    We'll report to the client this id:
462
    - if the table contains an autoincrement column and we successfully
463
    inserted an autogenerated value, the autogenerated value.
464
    - if the table contains no autoincrement column and LAST_INSERT_ID(X) was
465
    called, X.
466
    - if the table contains an autoincrement column, and some rows were
467
    inserted, the id of the last "inserted" row (if IGNORE, that value may not
468
    have been really inserted but ignored).
469
  */
520.1.22 by Brian Aker
Second pass of thd cleanup
470
  id= (session->first_successful_insert_id_in_cur_stmt > 0) ?
471
    session->first_successful_insert_id_in_cur_stmt :
472
    (session->arg_of_last_insert_id_function ?
473
     session->first_successful_insert_id_in_prev_stmt :
1 by brian
clean slate
474
     ((table->next_number_field && info.copied) ?
475
     table->next_number_field->val_int() : 0));
476
  table->next_number_field=0;
520.1.22 by Brian Aker
Second pass of thd cleanup
477
  session->count_cuted_fields= CHECK_FIELD_IGNORE;
163 by Brian Aker
Merge Monty's code.
478
  table->auto_increment_field_not_null= false;
1 by brian
clean slate
479
  if (duplic == DUP_REPLACE)
480
    table->file->extra(HA_EXTRA_WRITE_CANNOT_REPLACE);
481
482
  if (error)
483
    goto abort;
520.1.22 by Brian Aker
Second pass of thd cleanup
484
  if (values_list.elements == 1 && (!(session->options & OPTION_WARNINGS) ||
485
				    !session->cuted_fields))
1 by brian
clean slate
486
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
487
    session->row_count_func= info.copied + info.deleted +
488
                         ((session->client_capabilities & CLIENT_FOUND_ROWS) ?
1 by brian
clean slate
489
                          info.touched : info.updated);
520.1.22 by Brian Aker
Second pass of thd cleanup
490
    my_ok(session, (ulong) session->row_count_func, id);
1 by brian
clean slate
491
  }
492
  else
493
  {
494
    char buff[160];
520.1.22 by Brian Aker
Second pass of thd cleanup
495
    ha_rows updated=((session->client_capabilities & CLIENT_FOUND_ROWS) ?
1 by brian
clean slate
496
                     info.touched : info.updated);
497
    if (ignore)
498
      sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
520.1.22 by Brian Aker
Second pass of thd cleanup
499
              (ulong) (info.records - info.copied), (ulong) session->cuted_fields);
1 by brian
clean slate
500
    else
501
      sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
520.1.22 by Brian Aker
Second pass of thd cleanup
502
	      (ulong) (info.deleted + updated), (ulong) session->cuted_fields);
503
    session->row_count_func= info.copied + info.deleted + updated;
504
    ::my_ok(session, (ulong) session->row_count_func, id, buff);
1 by brian
clean slate
505
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
506
  session->abort_on_warning= 0;
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
507
  DRIZZLE_INSERT_END();
163 by Brian Aker
Merge Monty's code.
508
  return(false);
1 by brian
clean slate
509
510
abort:
511
  if (table != NULL)
512
    table->file->ha_release_auto_increment();
513
  if (!joins_freed)
520.1.22 by Brian Aker
Second pass of thd cleanup
514
    free_underlaid_joins(session, &session->lex->select_lex);
515
  session->abort_on_warning= 0;
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
516
  DRIZZLE_INSERT_END();
163 by Brian Aker
Merge Monty's code.
517
  return(true);
1 by brian
clean slate
518
}
519
520
521
/*
522
  Check if table can be updated
523
524
  SYNOPSIS
525
     mysql_prepare_insert_check_table()
520.1.22 by Brian Aker
Second pass of thd cleanup
526
     session		Thread handle
1 by brian
clean slate
527
     table_list		Table list
528
     fields		List of fields to be updated
529
     where		Pointer to where clause
530
     select_insert      Check is making for SELECT ... INSERT
531
532
   RETURN
163 by Brian Aker
Merge Monty's code.
533
     false ok
534
     true  ERROR
1 by brian
clean slate
535
*/
536
520.1.22 by Brian Aker
Second pass of thd cleanup
537
static bool mysql_prepare_insert_check_table(Session *session, TableList *table_list,
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
538
                                             List<Item> &,
1 by brian
clean slate
539
                                             bool select_insert)
540
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
541
1 by brian
clean slate
542
543
  /*
544
     first table in list is the one we'll INSERT into, requires INSERT_ACL.
545
     all others require SELECT_ACL only. the ACL requirement below is for
546
     new leaves only anyway (view-constituents), so check for SELECT rather
547
     than INSERT.
548
  */
549
520.1.22 by Brian Aker
Second pass of thd cleanup
550
  if (setup_tables_and_check_access(session, &session->lex->select_lex.context,
551
                                    &session->lex->select_lex.top_join_list,
1 by brian
clean slate
552
                                    table_list,
520.1.22 by Brian Aker
Second pass of thd cleanup
553
                                    &session->lex->select_lex.leaf_tables,
1 by brian
clean slate
554
                                    select_insert))
163 by Brian Aker
Merge Monty's code.
555
    return(true);
1 by brian
clean slate
556
163 by Brian Aker
Merge Monty's code.
557
  return(false);
1 by brian
clean slate
558
}
559
560
561
/*
562
  Prepare items in INSERT statement
563
564
  SYNOPSIS
565
    mysql_prepare_insert()
520.1.22 by Brian Aker
Second pass of thd cleanup
566
    session			Thread handler
1 by brian
clean slate
567
    table_list	        Global/local table list
568
    table		Table to insert into (can be NULL if table should
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
569
			be taken from table_list->table)
1 by brian
clean slate
570
    where		Where clause (for insert ... select)
163 by Brian Aker
Merge Monty's code.
571
    select_insert	true if INSERT ... SELECT statement
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
572
    check_fields        true if need to check that all INSERT fields are
1 by brian
clean slate
573
                        given values.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
574
    abort_on_warning    whether to report if some INSERT field is not
163 by Brian Aker
Merge Monty's code.
575
                        assigned as an error (true) or as a warning (false).
1 by brian
clean slate
576
577
  TODO (in far future)
578
    In cases of:
579
    INSERT INTO t1 SELECT a, sum(a) as sum1 from t2 GROUP BY a
580
    ON DUPLICATE KEY ...
581
    we should be able to refer to sum1 in the ON DUPLICATE KEY part
582
583
  WARNING
584
    You MUST set table->insert_values to 0 after calling this function
585
    before releasing the table object.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
586
1 by brian
clean slate
587
  RETURN VALUE
163 by Brian Aker
Merge Monty's code.
588
    false OK
589
    true  error
1 by brian
clean slate
590
*/
591
520.1.22 by Brian Aker
Second pass of thd cleanup
592
bool mysql_prepare_insert(Session *session, TableList *table_list,
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
593
                          Table *table, List<Item> &fields, List_item *values,
1 by brian
clean slate
594
                          List<Item> &update_fields, List<Item> &update_values,
595
                          enum_duplicates duplic,
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
596
                          COND **,
77.1.45 by Monty Taylor
Warning fixes.
597
                          bool select_insert,
1 by brian
clean slate
598
                          bool check_fields, bool abort_on_warning)
599
{
520.1.22 by Brian Aker
Second pass of thd cleanup
600
  SELECT_LEX *select_lex= &session->lex->select_lex;
1 by brian
clean slate
601
  Name_resolution_context *context= &select_lex->context;
602
  Name_resolution_context_state ctx_state;
603
  bool insert_into_view= (0 != 0);
604
  bool res= 0;
605
  table_map map= 0;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
606
1 by brian
clean slate
607
  /* INSERT should have a SELECT or VALUES clause */
51.2.2 by Patrick Galbraith
Removed DBUGs from
608
  assert (!select_insert || !values);
1 by brian
clean slate
609
610
  /*
611
    For subqueries in VALUES() we should not see the table in which we are
612
    inserting (for INSERT ... SELECT this is done by changing table_list,
613
    because INSERT ... SELECT share SELECT_LEX it with SELECT.
614
  */
615
  if (!select_insert)
616
  {
617
    for (SELECT_LEX_UNIT *un= select_lex->first_inner_unit();
618
         un;
619
         un= un->next_unit())
620
    {
621
      for (SELECT_LEX *sl= un->first_select();
622
           sl;
623
           sl= sl->next_select())
624
      {
625
        sl->context.outer_context= 0;
626
      }
627
    }
628
  }
629
630
  if (duplic == DUP_UPDATE)
631
  {
632
    /* it should be allocated before Item::fix_fields() */
520.1.22 by Brian Aker
Second pass of thd cleanup
633
    if (table_list->set_insert_values(session->mem_root))
163 by Brian Aker
Merge Monty's code.
634
      return(true);
1 by brian
clean slate
635
  }
636
520.1.22 by Brian Aker
Second pass of thd cleanup
637
  if (mysql_prepare_insert_check_table(session, table_list, fields, select_insert))
163 by Brian Aker
Merge Monty's code.
638
    return(true);
1 by brian
clean slate
639
640
641
  /* Prepare the fields in the statement. */
642
  if (values)
643
  {
644
    /* if we have INSERT ... VALUES () we cannot have a GROUP BY clause */
51.2.2 by Patrick Galbraith
Removed DBUGs from
645
    assert (!select_lex->group_list.elements);
1 by brian
clean slate
646
647
    /* Save the state of the current name resolution context. */
648
    ctx_state.save_state(context, table_list);
649
650
    /*
651
      Perform name resolution only in the first table - 'table_list',
652
      which is the table that is inserted into.
653
     */
654
    table_list->next_local= 0;
655
    context->resolve_in_table_list_only(table_list);
656
520.1.22 by Brian Aker
Second pass of thd cleanup
657
    res= check_insert_fields(session, context->table_list, fields, *values,
1 by brian
clean slate
658
                             !insert_into_view, &map) ||
520.1.22 by Brian Aker
Second pass of thd cleanup
659
      setup_fields(session, 0, *values, MARK_COLUMNS_READ, 0, 0);
1 by brian
clean slate
660
661
    if (!res && check_fields)
662
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
663
      bool saved_abort_on_warning= session->abort_on_warning;
664
      session->abort_on_warning= abort_on_warning;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
665
      res= check_that_all_fields_are_given_values(session,
666
                                                  table ? table :
1 by brian
clean slate
667
                                                  context->table_list->table,
668
                                                  context->table_list);
520.1.22 by Brian Aker
Second pass of thd cleanup
669
      session->abort_on_warning= saved_abort_on_warning;
1 by brian
clean slate
670
    }
671
672
    if (!res && duplic == DUP_UPDATE)
673
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
674
      res= check_update_fields(session, context->table_list, update_fields, &map);
1 by brian
clean slate
675
    }
676
677
    /* Restore the current context. */
678
    ctx_state.restore_state(context, table_list);
679
680
    if (!res)
520.1.22 by Brian Aker
Second pass of thd cleanup
681
      res= setup_fields(session, 0, update_values, MARK_COLUMNS_READ, 0, 0);
1 by brian
clean slate
682
  }
683
684
  if (res)
51.2.2 by Patrick Galbraith
Removed DBUGs from
685
    return(res);
1 by brian
clean slate
686
687
  if (!table)
688
    table= table_list->table;
689
690
  if (!select_insert)
691
  {
327.2.4 by Brian Aker
Refactoring table.h
692
    TableList *duplicate;
520.1.22 by Brian Aker
Second pass of thd cleanup
693
    if ((duplicate= unique_table(session, table_list, table_list->next_global, 1)))
1 by brian
clean slate
694
    {
695
      update_non_unique_table_error(table_list, "INSERT", duplicate);
163 by Brian Aker
Merge Monty's code.
696
      return(true);
1 by brian
clean slate
697
    }
698
  }
699
  if (duplic == DUP_UPDATE || duplic == DUP_REPLACE)
700
    table->prepare_for_position();
163 by Brian Aker
Merge Monty's code.
701
  return(false);
1 by brian
clean slate
702
}
703
704
705
	/* Check if there is more uniq keys after field */
706
482 by Brian Aker
Remove uint.
707
static int last_uniq_key(Table *table,uint32_t keynr)
1 by brian
clean slate
708
{
709
  while (++keynr < table->s->keys)
710
    if (table->key_info[keynr].flags & HA_NOSAME)
711
      return 0;
712
  return 1;
713
}
714
715
716
/*
717
  Write a record to table with optional deleting of conflicting records,
718
  invoke proper triggers if needed.
719
720
  SYNOPSIS
721
     write_record()
520.1.22 by Brian Aker
Second pass of thd cleanup
722
      session   - thread context
1 by brian
clean slate
723
      table - table to which record should be written
724
      info  - COPY_INFO structure describing handling of duplicates
725
              and which is used for counting number of records inserted
726
              and deleted.
727
728
  NOTE
729
    Once this record will be written to table after insert trigger will
730
    be invoked. If instead of inserting new record we will update old one
731
    then both on update triggers will work instead. Similarly both on
732
    delete triggers will be invoked if we will delete conflicting records.
733
520.1.22 by Brian Aker
Second pass of thd cleanup
734
    Sets session->transaction.stmt.modified_non_trans_table to true if table which is updated didn't have
1 by brian
clean slate
735
    transactions.
736
737
  RETURN VALUE
738
    0     - success
739
    non-0 - error
740
*/
741
742
520.1.22 by Brian Aker
Second pass of thd cleanup
743
int write_record(Session *session, Table *table,COPY_INFO *info)
1 by brian
clean slate
744
{
745
  int error;
746
  char *key=0;
747
  MY_BITMAP *save_read_set, *save_write_set;
151 by Brian Aker
Ulonglong to uint64_t
748
  uint64_t prev_insert_id= table->file->next_insert_id;
749
  uint64_t insert_id_for_cur_row= 0;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
750
1 by brian
clean slate
751
752
  info->records++;
753
  save_read_set=  table->read_set;
754
  save_write_set= table->write_set;
755
756
  if (info->handle_duplicates == DUP_REPLACE ||
757
      info->handle_duplicates == DUP_UPDATE)
758
  {
759
    while ((error=table->file->ha_write_row(table->record[0])))
760
    {
482 by Brian Aker
Remove uint.
761
      uint32_t key_nr;
1 by brian
clean slate
762
      /*
763
        If we do more than one iteration of this loop, from the second one the
764
        row will have an explicit value in the autoinc field, which was set at
765
        the first call of handler::update_auto_increment(). So we must save
520.1.22 by Brian Aker
Second pass of thd cleanup
766
        the autogenerated value to avoid session->insert_id_for_cur_row to become
1 by brian
clean slate
767
        0.
768
      */
769
      if (table->file->insert_id_for_cur_row > 0)
770
        insert_id_for_cur_row= table->file->insert_id_for_cur_row;
771
      else
772
        table->file->insert_id_for_cur_row= insert_id_for_cur_row;
773
      bool is_duplicate_key_error;
774
      if (table->file->is_fatal_error(error, HA_CHECK_DUP))
775
	goto err;
776
      is_duplicate_key_error= table->file->is_fatal_error(error, 0);
777
      if (!is_duplicate_key_error)
778
      {
779
        /*
780
          We come here when we had an ignorable error which is not a duplicate
781
          key error. In this we ignore error if ignore flag is set, otherwise
782
          report error as usual. We will not do any duplicate key processing.
783
        */
784
        if (info->ignore)
785
          goto gok_or_after_err; /* Ignoring a not fatal error, return 0 */
786
        goto err;
787
      }
788
      if ((int) (key_nr = table->file->get_dup_key(error)) < 0)
789
      {
790
	error= HA_ERR_FOUND_DUPP_KEY;         /* Database can't find key */
791
	goto err;
792
      }
793
      /* Read all columns for the row we are going to replace */
794
      table->use_all_columns();
795
      /*
796
	Don't allow REPLACE to replace a row when a auto_increment column
797
	was used.  This ensures that we don't get a problem when the
798
	whole range of the key has been used.
799
      */
800
      if (info->handle_duplicates == DUP_REPLACE &&
801
          table->next_number_field &&
802
          key_nr == table->s->next_number_index &&
803
	  (insert_id_for_cur_row > 0))
804
	goto err;
805
      if (table->file->ha_table_flags() & HA_DUPLICATE_POS)
806
      {
807
	if (table->file->rnd_pos(table->record[1],table->file->dup_ref))
808
	  goto err;
809
      }
810
      else
811
      {
812
	if (table->file->extra(HA_EXTRA_FLUSH_CACHE)) /* Not needed with NISAM */
813
	{
814
	  error=my_errno;
815
	  goto err;
816
	}
817
818
	if (!key)
819
	{
656.1.1 by Monty Taylor
OOOh doggie. Got rid of my_alloca.
820
	  if (!(key=(char*) malloc(table->s->max_unique_length)))
1 by brian
clean slate
821
	  {
822
	    error=ENOMEM;
823
	    goto err;
824
	  }
825
	}
481 by Brian Aker
Remove all of uchar.
826
	key_copy((unsigned char*) key,table->record[0],table->key_info+key_nr,0);
1 by brian
clean slate
827
	if ((error=(table->file->index_read_idx_map(table->record[1],key_nr,
481 by Brian Aker
Remove all of uchar.
828
                                                    (unsigned char*) key, HA_WHOLE_KEY,
1 by brian
clean slate
829
                                                    HA_READ_KEY_EXACT))))
830
	  goto err;
831
      }
832
      if (info->handle_duplicates == DUP_UPDATE)
833
      {
834
        /*
835
          We don't check for other UNIQUE keys - the first row
836
          that matches, is updated. If update causes a conflict again,
837
          an error is returned
838
        */
51.2.2 by Patrick Galbraith
Removed DBUGs from
839
	assert(table->insert_values != NULL);
1 by brian
clean slate
840
        store_record(table,insert_values);
841
        restore_record(table,record[1]);
51.2.2 by Patrick Galbraith
Removed DBUGs from
842
        assert(info->update_fields->elements ==
1 by brian
clean slate
843
                    info->update_values->elements);
520.1.22 by Brian Aker
Second pass of thd cleanup
844
        if (fill_record(session, *info->update_fields,
1 by brian
clean slate
845
                                                 *info->update_values,
846
                                                 info->ignore))
847
          goto before_err;
848
849
        table->file->restore_auto_increment(prev_insert_id);
850
        if (table->next_number_field)
851
          table->file->adjust_next_insert_id_after_explicit_value(
852
            table->next_number_field->val_int());
853
        info->touched++;
854
        if ((table->file->ha_table_flags() & HA_PARTIAL_COLUMN_READ &&
855
             !bitmap_is_subset(table->write_set, table->read_set)) ||
355 by Brian Aker
More Table cleanup
856
            table->compare_record())
1 by brian
clean slate
857
        {
858
          if ((error=table->file->ha_update_row(table->record[1],
859
                                                table->record[0])) &&
860
              error != HA_ERR_RECORD_IS_THE_SAME)
861
          {
862
            if (info->ignore &&
863
                !table->file->is_fatal_error(error, HA_CHECK_DUP_KEY))
864
            {
865
              goto gok_or_after_err;
866
            }
867
            goto err;
868
          }
869
870
          if (error != HA_ERR_RECORD_IS_THE_SAME)
871
            info->updated++;
872
          else
873
            error= 0;
874
          /*
875
            If ON DUP KEY UPDATE updates a row instead of inserting one, it's
876
            like a regular UPDATE statement: it should not affect the value of a
877
            next SELECT LAST_INSERT_ID() or mysql_insert_id().
878
            Except if LAST_INSERT_ID(#) was in the INSERT query, which is
520.1.21 by Brian Aker
THD -> Session rename
879
            handled separately by Session::arg_of_last_insert_id_function.
1 by brian
clean slate
880
          */
881
          insert_id_for_cur_row= table->file->insert_id_for_cur_row= 0;
882
          info->copied++;
883
        }
884
885
        if (table->next_number_field)
886
          table->file->adjust_next_insert_id_after_explicit_value(
887
            table->next_number_field->val_int());
888
        info->touched++;
889
890
        goto gok_or_after_err;
891
      }
892
      else /* DUP_REPLACE */
893
      {
894
	/*
895
	  The manual defines the REPLACE semantics that it is either
896
	  an INSERT or DELETE(s) + INSERT; FOREIGN KEY checks in
897
	  InnoDB do not function in the defined way if we allow MySQL
898
	  to convert the latter operation internally to an UPDATE.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
899
          We also should not perform this conversion if we have
1 by brian
clean slate
900
          timestamp field with ON UPDATE which is different from DEFAULT.
901
          Another case when conversion should not be performed is when
902
          we have ON DELETE trigger on table so user may notice that
903
          we cheat here. Note that it is ok to do such conversion for
904
          tables which have ON UPDATE but have no ON DELETE triggers,
905
          we just should not expose this fact to users by invoking
906
          ON UPDATE triggers.
907
	*/
908
	if (last_uniq_key(table,key_nr) &&
909
	    !table->file->referenced_by_foreign_key() &&
910
            (table->timestamp_field_type == TIMESTAMP_NO_AUTO_SET ||
911
             table->timestamp_field_type == TIMESTAMP_AUTO_SET_ON_BOTH))
912
        {
913
          if ((error=table->file->ha_update_row(table->record[1],
914
					        table->record[0])) &&
915
              error != HA_ERR_RECORD_IS_THE_SAME)
916
            goto err;
917
          if (error != HA_ERR_RECORD_IS_THE_SAME)
918
            info->deleted++;
919
          else
920
            error= 0;
520.1.22 by Brian Aker
Second pass of thd cleanup
921
          session->record_first_successful_insert_id_in_cur_stmt(table->file->insert_id_for_cur_row);
1 by brian
clean slate
922
          /*
923
            Since we pretend that we have done insert we should call
924
            its after triggers.
925
          */
926
          goto after_n_copied_inc;
927
        }
928
        else
929
        {
930
          if ((error=table->file->ha_delete_row(table->record[1])))
931
            goto err;
932
          info->deleted++;
933
          if (!table->file->has_transactions())
520.1.22 by Brian Aker
Second pass of thd cleanup
934
            session->transaction.stmt.modified_non_trans_table= true;
1 by brian
clean slate
935
          /* Let us attempt do write_row() once more */
936
        }
937
      }
938
    }
520.1.22 by Brian Aker
Second pass of thd cleanup
939
    session->record_first_successful_insert_id_in_cur_stmt(table->file->insert_id_for_cur_row);
1 by brian
clean slate
940
    /*
941
      Restore column maps if they where replaced during an duplicate key
942
      problem.
943
    */
944
    if (table->read_set != save_read_set ||
945
        table->write_set != save_write_set)
946
      table->column_bitmaps_set(save_read_set, save_write_set);
947
  }
948
  else if ((error=table->file->ha_write_row(table->record[0])))
949
  {
950
    if (!info->ignore ||
951
        table->file->is_fatal_error(error, HA_CHECK_DUP))
952
      goto err;
953
    table->file->restore_auto_increment(prev_insert_id);
954
    goto gok_or_after_err;
955
  }
956
957
after_n_copied_inc:
958
  info->copied++;
520.1.22 by Brian Aker
Second pass of thd cleanup
959
  session->record_first_successful_insert_id_in_cur_stmt(table->file->insert_id_for_cur_row);
1 by brian
clean slate
960
961
gok_or_after_err:
962
  if (key)
656.1.1 by Monty Taylor
OOOh doggie. Got rid of my_alloca.
963
    free(key);
1 by brian
clean slate
964
  if (!table->file->has_transactions())
520.1.22 by Brian Aker
Second pass of thd cleanup
965
    session->transaction.stmt.modified_non_trans_table= true;
51.2.2 by Patrick Galbraith
Removed DBUGs from
966
  return(0);
1 by brian
clean slate
967
968
err:
969
  info->last_errno= error;
970
  /* current_select is NULL if this is a delayed insert */
520.1.22 by Brian Aker
Second pass of thd cleanup
971
  if (session->lex->current_select)
972
    session->lex->current_select->no_error= 0;        // Give error
1 by brian
clean slate
973
  table->file->print_error(error,MYF(0));
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
974
1 by brian
clean slate
975
before_err:
976
  table->file->restore_auto_increment(prev_insert_id);
977
  if (key)
656.1.1 by Monty Taylor
OOOh doggie. Got rid of my_alloca.
978
    free(key);
1 by brian
clean slate
979
  table->column_bitmaps_set(save_read_set, save_write_set);
51.2.2 by Patrick Galbraith
Removed DBUGs from
980
  return(1);
1 by brian
clean slate
981
}
982
983
984
/******************************************************************************
985
  Check that all fields with arn't null_fields are used
986
******************************************************************************/
987
520.1.22 by Brian Aker
Second pass of thd cleanup
988
int check_that_all_fields_are_given_values(Session *session, Table *entry,
685.4.10 by Jay Pipes
Fixed bug where error 1364 was not being thrown in an appropriate place. Now, check_that_all_fields_have_given_values() method does two separate checks, one for not being in the write_set() and not having a default value (raise 1364) and another for being in the write_set() but having a NULL value set
989
                                           TableList *)
1 by brian
clean slate
990
{
991
  int err= 0;
992
  MY_BITMAP *write_set= entry->write_set;
993
994
  for (Field **field=entry->field ; *field ; field++)
995
  {
685.4.10 by Jay Pipes
Fixed bug where error 1364 was not being thrown in an appropriate place. Now, check_that_all_fields_have_given_values() method does two separate checks, one for not being in the write_set() and not having a default value (raise 1364) and another for being in the write_set() but having a NULL value set
996
    if (!bitmap_is_set(write_set, (*field)->field_index))
997
    {
998
      /*
999
       * If the field doesn't have any default value
1000
       * and there is no actual value specified in the
1001
       * INSERT statement, throw error ER_NO_DEFAULT_FOR_FIELD.
1002
       */
1003
      if (((*field)->flags & NO_DEFAULT_VALUE_FLAG) &&
212.2.2 by Patrick Galbraith
Renamed FIELD_TYPE to DRIZZLE_TYPE
1004
        ((*field)->real_type() != DRIZZLE_TYPE_ENUM))
1 by brian
clean slate
1005
      {
685.4.10 by Jay Pipes
Fixed bug where error 1364 was not being thrown in an appropriate place. Now, check_that_all_fields_have_given_values() method does two separate checks, one for not being in the write_set() and not having a default value (raise 1364) and another for being in the write_set() but having a NULL value set
1006
        my_error(ER_NO_DEFAULT_FOR_FIELD, MYF(0), (*field)->field_name);
1007
        err= 1;
1 by brian
clean slate
1008
      }
685.4.10 by Jay Pipes
Fixed bug where error 1364 was not being thrown in an appropriate place. Now, check_that_all_fields_have_given_values() method does two separate checks, one for not being in the write_set() and not having a default value (raise 1364) and another for being in the write_set() but having a NULL value set
1009
    }
1010
    else
1011
    {
685.4.1 by Jay Pipes
Enabled the null.test.
1012
      /*
685.4.10 by Jay Pipes
Fixed bug where error 1364 was not being thrown in an appropriate place. Now, check_that_all_fields_have_given_values() method does two separate checks, one for not being in the write_set() and not having a default value (raise 1364) and another for being in the write_set() but having a NULL value set
1013
       * However, if an actual NULL value was specified
1014
       * for the field and the field is a NOT NULL field, 
1015
       * throw ER_BAD_NULL_ERROR.
1016
       *
685.4.1 by Jay Pipes
Enabled the null.test.
1017
       * Per the SQL standard, inserting NULL into a NOT NULL
1018
       * field requires an error to be thrown.
1019
       */
685.4.10 by Jay Pipes
Fixed bug where error 1364 was not being thrown in an appropriate place. Now, check_that_all_fields_have_given_values() method does two separate checks, one for not being in the write_set() and not having a default value (raise 1364) and another for being in the write_set() but having a NULL value set
1020
      if (((*field)->flags & NOT_NULL_FLAG) &&
1021
          (*field)->is_null())
1022
      {
1023
        my_error(ER_BAD_NULL_ERROR, MYF(0), (*field)->field_name);
1024
        err= 1;
1025
      }
1 by brian
clean slate
1026
    }
1027
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
1028
  return session->abort_on_warning ? err : 0;
1 by brian
clean slate
1029
}
1030
1031
/***************************************************************************
1032
  Store records in INSERT ... SELECT *
1033
***************************************************************************/
1034
1035
1036
/*
1037
  make insert specific preparation and checks after opening tables
1038
1039
  SYNOPSIS
1040
    mysql_insert_select_prepare()
520.1.22 by Brian Aker
Second pass of thd cleanup
1041
    session         thread handler
1 by brian
clean slate
1042
1043
  RETURN
163 by Brian Aker
Merge Monty's code.
1044
    false OK
1045
    true  Error
1 by brian
clean slate
1046
*/
1047
520.1.22 by Brian Aker
Second pass of thd cleanup
1048
bool mysql_insert_select_prepare(Session *session)
1 by brian
clean slate
1049
{
520.1.22 by Brian Aker
Second pass of thd cleanup
1050
  LEX *lex= session->lex;
1 by brian
clean slate
1051
  SELECT_LEX *select_lex= &lex->select_lex;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1052
1 by brian
clean slate
1053
  /*
1054
    SELECT_LEX do not belong to INSERT statement, so we can't add WHERE
1055
    clause if table is VIEW
1056
  */
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1057
520.1.22 by Brian Aker
Second pass of thd cleanup
1058
  if (mysql_prepare_insert(session, lex->query_tables,
1 by brian
clean slate
1059
                           lex->query_tables->table, lex->field_list, 0,
1060
                           lex->update_list, lex->value_list,
1061
                           lex->duplicates,
163 by Brian Aker
Merge Monty's code.
1062
                           &select_lex->where, true, false, false))
1063
    return(true);
1 by brian
clean slate
1064
1065
  /*
1066
    exclude first table from leaf tables list, because it belong to
1067
    INSERT
1068
  */
51.2.2 by Patrick Galbraith
Removed DBUGs from
1069
  assert(select_lex->leaf_tables != 0);
1 by brian
clean slate
1070
  lex->leaf_tables_insert= select_lex->leaf_tables;
1071
  /* skip all leaf tables belonged to view where we are insert */
327.1.7 by Brian Aker
Removed belong_to_view variable
1072
  select_lex->leaf_tables= select_lex->leaf_tables->next_leaf;
163 by Brian Aker
Merge Monty's code.
1073
  return(false);
1 by brian
clean slate
1074
}
1075
1076
327.2.4 by Brian Aker
Refactoring table.h
1077
select_insert::select_insert(TableList *table_list_par, Table *table_par,
1 by brian
clean slate
1078
                             List<Item> *fields_par,
1079
                             List<Item> *update_fields,
1080
                             List<Item> *update_values,
1081
                             enum_duplicates duplic,
1082
                             bool ignore_check_option_errors)
1083
  :table_list(table_list_par), table(table_par), fields(fields_par),
1084
   autoinc_value_of_last_inserted_row(0),
1085
   insert_into_view(table_list_par && 0 != 0)
1086
{
212.6.6 by Mats Kindahl
Removing redundant use of casts in drizzled/ for memcmp(), memcpy(), memset(), and memmove().
1087
  memset(&info, 0, sizeof(info));
1 by brian
clean slate
1088
  info.handle_duplicates= duplic;
1089
  info.ignore= ignore_check_option_errors;
1090
  info.update_fields= update_fields;
1091
  info.update_values= update_values;
1092
}
1093
1094
1095
int
1096
select_insert::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
1097
{
520.1.22 by Brian Aker
Second pass of thd cleanup
1098
  LEX *lex= session->lex;
1 by brian
clean slate
1099
  int res;
1100
  table_map map= 0;
1101
  SELECT_LEX *lex_current_select_save= lex->current_select;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1102
1 by brian
clean slate
1103
1104
  unit= u;
1105
1106
  /*
1107
    Since table in which we are going to insert is added to the first
1108
    select, LEX::current_select should point to the first select while
1109
    we are fixing fields from insert list.
1110
  */
1111
  lex->current_select= &lex->select_lex;
520.1.22 by Brian Aker
Second pass of thd cleanup
1112
  res= check_insert_fields(session, table_list, *fields, values,
1 by brian
clean slate
1113
                           !insert_into_view, &map) ||
520.1.22 by Brian Aker
Second pass of thd cleanup
1114
       setup_fields(session, 0, values, MARK_COLUMNS_READ, 0, 0);
1 by brian
clean slate
1115
1116
  if (!res && fields->elements)
1117
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
1118
    bool saved_abort_on_warning= session->abort_on_warning;
1119
    session->abort_on_warning= !info.ignore;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1120
    res= check_that_all_fields_are_given_values(session, table_list->table,
1 by brian
clean slate
1121
                                                table_list);
520.1.22 by Brian Aker
Second pass of thd cleanup
1122
    session->abort_on_warning= saved_abort_on_warning;
1 by brian
clean slate
1123
  }
1124
1125
  if (info.handle_duplicates == DUP_UPDATE && !res)
1126
  {
1127
    Name_resolution_context *context= &lex->select_lex.context;
1128
    Name_resolution_context_state ctx_state;
1129
1130
    /* Save the state of the current name resolution context. */
1131
    ctx_state.save_state(context, table_list);
1132
1133
    /* Perform name resolution only in the first table - 'table_list'. */
1134
    table_list->next_local= 0;
1135
    context->resolve_in_table_list_only(table_list);
1136
520.1.22 by Brian Aker
Second pass of thd cleanup
1137
    res= res || check_update_fields(session, context->table_list,
1 by brian
clean slate
1138
                                    *info.update_fields, &map);
1139
    /*
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1140
      When we are not using GROUP BY and there are no ungrouped aggregate functions
1 by brian
clean slate
1141
      we can refer to other tables in the ON DUPLICATE KEY part.
1142
      We use next_name_resolution_table descructively, so check it first (views?)
1143
    */
51.2.2 by Patrick Galbraith
Removed DBUGs from
1144
    assert (!table_list->next_name_resolution_table);
1 by brian
clean slate
1145
    if (lex->select_lex.group_list.elements == 0 &&
1146
        !lex->select_lex.with_sum_func)
1147
      /*
1148
        We must make a single context out of the two separate name resolution contexts :
1149
        the INSERT table and the tables in the SELECT part of INSERT ... SELECT.
1150
        To do that we must concatenate the two lists
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1151
      */
1152
      table_list->next_name_resolution_table=
1 by brian
clean slate
1153
        ctx_state.get_first_name_resolution_table();
1154
520.1.22 by Brian Aker
Second pass of thd cleanup
1155
    res= res || setup_fields(session, 0, *info.update_values,
1 by brian
clean slate
1156
                             MARK_COLUMNS_READ, 0, 0);
1157
    if (!res)
1158
    {
1159
      /*
1160
        Traverse the update values list and substitute fields from the
1161
        select for references (Item_ref objects) to them. This is done in
1162
        order to get correct values from those fields when the select
1163
        employs a temporary table.
1164
      */
1165
      List_iterator<Item> li(*info.update_values);
1166
      Item *item;
1167
1168
      while ((item= li++))
1169
      {
1170
        item->transform(&Item::update_value_transformer,
481 by Brian Aker
Remove all of uchar.
1171
                        (unsigned char*)lex->current_select);
1 by brian
clean slate
1172
      }
1173
    }
1174
1175
    /* Restore the current context. */
1176
    ctx_state.restore_state(context, table_list);
1177
  }
1178
1179
  lex->current_select= lex_current_select_save;
1180
  if (res)
51.2.2 by Patrick Galbraith
Removed DBUGs from
1181
    return(1);
1 by brian
clean slate
1182
  /*
1183
    if it is INSERT into join view then check_insert_fields already found
1184
    real table for insert
1185
  */
1186
  table= table_list->table;
1187
1188
  /*
1189
    Is table which we are changing used somewhere in other parts of
1190
    query
1191
  */
520.1.22 by Brian Aker
Second pass of thd cleanup
1192
  if (unique_table(session, table_list, table_list->next_global, 0))
1 by brian
clean slate
1193
  {
1194
    /* Using same table for INSERT and SELECT */
1195
    lex->current_select->options|= OPTION_BUFFER_RESULT;
1196
    lex->current_select->join->select_options|= OPTION_BUFFER_RESULT;
1197
  }
1198
  else if (!(lex->current_select->options & OPTION_BUFFER_RESULT))
1199
  {
1200
    /*
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1201
      We must not yet prepare the result table if it is the same as one of the
1202
      source tables (INSERT SELECT). The preparation may disable
1 by brian
clean slate
1203
      indexes on the result table, which may be used during the select, if it
1204
      is the same table (Bug #6034). Do the preparation after the select phase
1205
      in select_insert::prepare2().
1206
      We won't start bulk inserts at all if this statement uses functions or
1207
      should invoke triggers since they may access to the same table too.
1208
    */
1209
    table->file->ha_start_bulk_insert((ha_rows) 0);
1210
  }
1211
  restore_record(table,s->default_values);		// Get empty record
1212
  table->next_number_field=table->found_next_number_field;
1213
520.1.22 by Brian Aker
Second pass of thd cleanup
1214
  session->cuted_fields=0;
1 by brian
clean slate
1215
  if (info.ignore || info.handle_duplicates != DUP_ERROR)
1216
    table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
1217
  if (info.handle_duplicates == DUP_REPLACE)
1218
    table->file->extra(HA_EXTRA_WRITE_CAN_REPLACE);
1219
  if (info.handle_duplicates == DUP_UPDATE)
1220
    table->file->extra(HA_EXTRA_INSERT_WITH_UPDATE);
520.1.22 by Brian Aker
Second pass of thd cleanup
1221
  session->abort_on_warning= !info.ignore;
1 by brian
clean slate
1222
  table->mark_columns_needed_for_insert();
1223
1224
51.2.2 by Patrick Galbraith
Removed DBUGs from
1225
  return(res);
1 by brian
clean slate
1226
}
1227
1228
1229
/*
1230
  Finish the preparation of the result table.
1231
1232
  SYNOPSIS
1233
    select_insert::prepare2()
1234
    void
1235
1236
  DESCRIPTION
1237
    If the result table is the same as one of the source tables (INSERT SELECT),
1238
    the result table is not finally prepared at the join prepair phase.
1239
    Do the final preparation now.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1240
1 by brian
clean slate
1241
  RETURN
1242
    0   OK
1243
*/
1244
1245
int select_insert::prepare2(void)
1246
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1247
520.1.22 by Brian Aker
Second pass of thd cleanup
1248
  if (session->lex->current_select->options & OPTION_BUFFER_RESULT)
1 by brian
clean slate
1249
    table->file->ha_start_bulk_insert((ha_rows) 0);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1250
  return(0);
1 by brian
clean slate
1251
}
1252
1253
1254
void select_insert::cleanup()
1255
{
1256
  /* select_insert/select_create are never re-used in prepared statement */
51.2.2 by Patrick Galbraith
Removed DBUGs from
1257
  assert(0);
1 by brian
clean slate
1258
}
1259
1260
select_insert::~select_insert()
1261
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1262
1 by brian
clean slate
1263
  if (table)
1264
  {
1265
    table->next_number_field=0;
163 by Brian Aker
Merge Monty's code.
1266
    table->auto_increment_field_not_null= false;
1 by brian
clean slate
1267
    table->file->ha_reset();
1268
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
1269
  session->count_cuted_fields= CHECK_FIELD_IGNORE;
1270
  session->abort_on_warning= 0;
51.2.2 by Patrick Galbraith
Removed DBUGs from
1271
  return;
1 by brian
clean slate
1272
}
1273
1274
1275
bool select_insert::send_data(List<Item> &values)
1276
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1277
1 by brian
clean slate
1278
  bool error=0;
1279
1280
  if (unit->offset_limit_cnt)
1281
  {						// using limit offset,count
1282
    unit->offset_limit_cnt--;
51.2.2 by Patrick Galbraith
Removed DBUGs from
1283
    return(0);
1 by brian
clean slate
1284
  }
1285
520.1.22 by Brian Aker
Second pass of thd cleanup
1286
  session->count_cuted_fields= CHECK_FIELD_WARN;	// Calculate cuted fields
1 by brian
clean slate
1287
  store_values(values);
520.1.22 by Brian Aker
Second pass of thd cleanup
1288
  session->count_cuted_fields= CHECK_FIELD_IGNORE;
1289
  if (session->is_error())
51.2.2 by Patrick Galbraith
Removed DBUGs from
1290
    return(1);
1 by brian
clean slate
1291
520.1.22 by Brian Aker
Second pass of thd cleanup
1292
  error= write_record(session, table, &info);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1293
1 by brian
clean slate
1294
  if (!error)
1295
  {
1296
    if (info.handle_duplicates == DUP_UPDATE)
1297
    {
1298
      /*
1299
        Restore fields of the record since it is possible that they were
1300
        changed by ON DUPLICATE KEY UPDATE clause.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1301
1 by brian
clean slate
1302
        If triggers exist then whey can modify some fields which were not
1303
        originally touched by INSERT ... SELECT, so we have to restore
1304
        their original values for the next row.
1305
      */
1306
      restore_record(table, s->default_values);
1307
    }
1308
    if (table->next_number_field)
1309
    {
1310
      /*
1311
        If no value has been autogenerated so far, we need to remember the
1312
        value we just saw, we may need to send it to client in the end.
1313
      */
520.1.22 by Brian Aker
Second pass of thd cleanup
1314
      if (session->first_successful_insert_id_in_cur_stmt == 0) // optimization
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1315
        autoinc_value_of_last_inserted_row=
1 by brian
clean slate
1316
          table->next_number_field->val_int();
1317
      /*
1318
        Clear auto-increment field for the next record, if triggers are used
1319
        we will clear it twice, but this should be cheap.
1320
      */
1321
      table->next_number_field->reset();
1322
    }
1323
  }
51.2.2 by Patrick Galbraith
Removed DBUGs from
1324
  return(error);
1 by brian
clean slate
1325
}
1326
1327
1328
void select_insert::store_values(List<Item> &values)
1329
{
1330
  if (fields->elements)
520.1.22 by Brian Aker
Second pass of thd cleanup
1331
    fill_record(session, *fields, values, 1);
1 by brian
clean slate
1332
  else
520.1.22 by Brian Aker
Second pass of thd cleanup
1333
    fill_record(session, table->field, values, 1);
1 by brian
clean slate
1334
}
1335
482 by Brian Aker
Remove uint.
1336
void select_insert::send_error(uint32_t errcode,const char *err)
1 by brian
clean slate
1337
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1338
1 by brian
clean slate
1339
1340
  my_message(errcode, err, MYF(0));
1341
51.2.2 by Patrick Galbraith
Removed DBUGs from
1342
  return;
1 by brian
clean slate
1343
}
1344
1345
1346
bool select_insert::send_eof()
1347
{
1348
  int error;
1349
  bool const trans_table= table->file->has_transactions();
151 by Brian Aker
Ulonglong to uint64_t
1350
  uint64_t id;
1 by brian
clean slate
1351
  bool changed;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1352
1 by brian
clean slate
1353
  error= table->file->ha_end_bulk_insert();
1354
  table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
1355
  table->file->extra(HA_EXTRA_WRITE_CANNOT_REPLACE);
1356
1357
  if ((changed= (info.copied || info.deleted || info.updated)))
1358
  {
1359
    /*
1360
      We must invalidate the table in the query cache before binlog writing
1361
      and ha_autocommit_or_rollback.
1362
    */
520.1.22 by Brian Aker
Second pass of thd cleanup
1363
    if (session->transaction.stmt.modified_non_trans_table)
1364
      session->transaction.all.modified_non_trans_table= true;
1 by brian
clean slate
1365
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1366
  assert(trans_table || !changed ||
520.1.22 by Brian Aker
Second pass of thd cleanup
1367
              session->transaction.stmt.modified_non_trans_table);
1 by brian
clean slate
1368
1369
  table->file->ha_release_auto_increment();
1370
1371
  if (error)
1372
  {
1373
    table->file->print_error(error,MYF(0));
51.2.2 by Patrick Galbraith
Removed DBUGs from
1374
    return(1);
1 by brian
clean slate
1375
  }
1376
  char buff[160];
1377
  if (info.ignore)
1378
    sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
520.1.22 by Brian Aker
Second pass of thd cleanup
1379
	    (ulong) (info.records - info.copied), (ulong) session->cuted_fields);
1 by brian
clean slate
1380
  else
1381
    sprintf(buff, ER(ER_INSERT_INFO), (ulong) info.records,
520.1.22 by Brian Aker
Second pass of thd cleanup
1382
	    (ulong) (info.deleted+info.updated), (ulong) session->cuted_fields);
1383
  session->row_count_func= info.copied + info.deleted +
1384
                       ((session->client_capabilities & CLIENT_FOUND_ROWS) ?
1 by brian
clean slate
1385
                        info.touched : info.updated);
1386
520.1.22 by Brian Aker
Second pass of thd cleanup
1387
  id= (session->first_successful_insert_id_in_cur_stmt > 0) ?
1388
    session->first_successful_insert_id_in_cur_stmt :
1389
    (session->arg_of_last_insert_id_function ?
1390
     session->first_successful_insert_id_in_prev_stmt :
1 by brian
clean slate
1391
     (info.copied ? autoinc_value_of_last_inserted_row : 0));
520.1.22 by Brian Aker
Second pass of thd cleanup
1392
  ::my_ok(session, (ulong) session->row_count_func, id, buff);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1393
  return(0);
1 by brian
clean slate
1394
}
1395
1396
void select_insert::abort() {
1397
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1398
1 by brian
clean slate
1399
  /*
1400
    If the creation of the table failed (due to a syntax error, for
1401
    example), no table will have been opened and therefore 'table'
1402
    will be NULL. In that case, we still need to execute the rollback
1403
    and the end of the function.
1404
   */
1405
  if (table)
1406
  {
1407
    bool changed, transactional_table;
1408
1409
    table->file->ha_end_bulk_insert();
1410
1411
    /*
1412
      If at least one row has been inserted/modified and will stay in
1413
      the table (the table doesn't have transactions) we must write to
1414
      the binlog (and the error code will make the slave stop).
1415
1416
      For many errors (example: we got a duplicate key error while
1417
      inserting into a MyISAM table), no row will be added to the table,
1418
      so passing the error to the slave will not help since there will
1419
      be an error code mismatch (the inserts will succeed on the slave
1420
      with no error).
1421
1422
      If table creation failed, the number of rows modified will also be
1423
      zero, so no check for that is made.
1424
    */
1425
    changed= (info.copied || info.deleted || info.updated);
1426
    transactional_table= table->file->has_transactions();
51.2.2 by Patrick Galbraith
Removed DBUGs from
1427
    assert(transactional_table || !changed ||
520.1.22 by Brian Aker
Second pass of thd cleanup
1428
		session->transaction.stmt.modified_non_trans_table);
1 by brian
clean slate
1429
    table->file->ha_release_auto_increment();
1430
  }
1431
51.2.2 by Patrick Galbraith
Removed DBUGs from
1432
  return;
1 by brian
clean slate
1433
}
1434
1435
1436
/***************************************************************************
1437
  CREATE TABLE (SELECT) ...
1438
***************************************************************************/
1439
1440
/*
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1441
  Create table from lists of fields and items (or just return Table
1 by brian
clean slate
1442
  object for pre-opened existing table).
1443
1444
  SYNOPSIS
1445
    create_table_from_items()
520.1.22 by Brian Aker
Second pass of thd cleanup
1446
      session          in     Thread object
1 by brian
clean slate
1447
      create_info  in     Create information (like MAX_ROWS, ENGINE or
1448
                          temporary table flag)
327.2.4 by Brian Aker
Refactoring table.h
1449
      create_table in     Pointer to TableList object providing database
1 by brian
clean slate
1450
                          and name for table to be created or to be open
1451
      alter_info   in/out Initial list of columns and indexes for the table
1452
                          to be created
1453
      items        in     List of items which should be used to produce rest
1454
                          of fields for the table (corresponding fields will
1455
                          be added to the end of alter_info->create_list)
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
1456
      lock         out    Pointer to the DRIZZLE_LOCK object for table created
1 by brian
clean slate
1457
                          (or open temporary table) will be returned in this
1458
                          parameter. Since this table is not included in
520.1.21 by Brian Aker
THD -> Session rename
1459
                          Session::lock caller is responsible for explicitly
1 by brian
clean slate
1460
                          unlocking this table.
1461
      hooks
1462
1463
  NOTES
1464
    This function behaves differently for base and temporary tables:
1465
    - For base table we assume that either table exists and was pre-opened
1466
      and locked at open_and_lock_tables() stage (and in this case we just
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1467
      emit error or warning and return pre-opened Table object) or special
1 by brian
clean slate
1468
      placeholder was put in table cache that guarantees that this table
1469
      won't be created or opened until the placeholder will be removed
1470
      (so there is an exclusive lock on this table).
1471
    - We don't pre-open existing temporary table, instead we either open
1472
      or create and then open table in this function.
1473
1474
    Since this function contains some logic specific to CREATE TABLE ...
1475
    SELECT it should be changed before it can be used in other contexts.
1476
1477
  RETURN VALUES
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1478
    non-zero  Pointer to Table object for table created or opened
1 by brian
clean slate
1479
    0         Error
1480
*/
1481
520.1.22 by Brian Aker
Second pass of thd cleanup
1482
static Table *create_table_from_items(Session *session, HA_CREATE_INFO *create_info,
327.2.4 by Brian Aker
Refactoring table.h
1483
                                      TableList *create_table,
1 by brian
clean slate
1484
                                      Alter_info *alter_info,
1485
                                      List<Item> *items,
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
1486
                                      DRIZZLE_LOCK **lock,
575.1.3 by Monty Taylor
Moved some stuff out of handler.h.
1487
                                      Tableop_hooks *hooks)
1 by brian
clean slate
1488
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1489
  Table tmp_table;		// Used during 'Create_field()'
1 by brian
clean slate
1490
  TABLE_SHARE share;
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1491
  Table *table= 0;
482 by Brian Aker
Remove uint.
1492
  uint32_t select_field_count= items->elements;
1 by brian
clean slate
1493
  /* Add selected items to field list */
1494
  List_iterator_fast<Item> it(*items);
1495
  Item *item;
1496
  Field *tmp_field;
1497
  bool not_used;
1498
1499
  if (!(create_info->options & HA_LEX_CREATE_TMP_TABLE) &&
784.1.6 by Stewart Smith
merge
1500
      create_table->table->db_stat)
1 by brian
clean slate
1501
  {
1502
    /* Table already exists and was open at open_and_lock_tables() stage. */
1503
    if (create_info->options & HA_LEX_CREATE_IF_NOT_EXISTS)
1504
    {
1505
      create_info->table_existed= 1;		// Mark that table existed
520.1.22 by Brian Aker
Second pass of thd cleanup
1506
      push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
1 by brian
clean slate
1507
                          ER_TABLE_EXISTS_ERROR, ER(ER_TABLE_EXISTS_ERROR),
1508
                          create_table->table_name);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1509
      return(create_table->table);
1 by brian
clean slate
1510
    }
1511
1512
    my_error(ER_TABLE_EXISTS_ERROR, MYF(0), create_table->table_name);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1513
    return(0);
1 by brian
clean slate
1514
  }
1515
1516
  tmp_table.alias= 0;
1517
  tmp_table.timestamp_field= 0;
1518
  tmp_table.s= &share;
520.1.22 by Brian Aker
Second pass of thd cleanup
1519
  init_tmp_table_share(session, &share, "", 0, "", "");
1 by brian
clean slate
1520
1521
  tmp_table.s->db_create_options=0;
1522
  tmp_table.s->blob_ptr_size= portable_sizeof_char_ptr;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1523
  tmp_table.s->db_low_byte_first=
1 by brian
clean slate
1524
        test(create_info->db_type == myisam_hton ||
1525
             create_info->db_type == heap_hton);
274 by Brian Aker
my_bool conversion in Table
1526
  tmp_table.null_row= false;
1527
  tmp_table.maybe_null= false;
1 by brian
clean slate
1528
1529
  while ((item=it++))
1530
  {
1531
    Create_field *cr_field;
1532
    Field *field, *def_field;
1533
    if (item->type() == Item::FUNC_ITEM)
1534
      if (item->result_type() != STRING_RESULT)
1535
        field= item->tmp_table_field(&tmp_table);
1536
      else
1537
        field= item->tmp_table_field_from_field_type(&tmp_table, 0);
1538
    else
520.1.22 by Brian Aker
Second pass of thd cleanup
1539
      field= create_tmp_field(session, &tmp_table, item, item->type(),
1 by brian
clean slate
1540
                              (Item ***) 0, &tmp_field, &def_field, 0, 0, 0, 0,
1541
                              0);
1542
    if (!field ||
1543
	!(cr_field=new Create_field(field,(item->type() == Item::FIELD_ITEM ?
1544
					   ((Item_field *)item)->field :
1545
					   (Field*) 0))))
51.2.2 by Patrick Galbraith
Removed DBUGs from
1546
      return(0);
1 by brian
clean slate
1547
    if (item->maybe_null)
1548
      cr_field->flags &= ~NOT_NULL_FLAG;
1549
    alter_info->create_list.push_back(cr_field);
1550
  }
1551
1552
  /*
1553
    Create and lock table.
1554
1555
    Note that we either creating (or opening existing) temporary table or
1556
    creating base table on which name we have exclusive lock. So code below
1557
    should not cause deadlocks or races.
1558
1559
    We don't log the statement, it will be logged later.
1560
1561
    If this is a HEAP table, the automatic DELETE FROM which is written to the
1562
    binlog when a HEAP table is opened for the first time since startup, must
1563
    not be written: 1) it would be wrong (imagine we're in CREATE SELECT: we
1564
    don't want to delete from it) 2) it would be written before the CREATE
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1565
    Table, which is a wrong order. So we keep binary logging disabled when we
1 by brian
clean slate
1566
    open_table().
1567
  */
1568
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
1569
    if (!mysql_create_table_no_lock(session, create_table->db,
1 by brian
clean slate
1570
                                    create_table->table_name,
1571
                                    create_info, alter_info, 0,
496.1.5 by Paul McCullagh
PBXT needs to call mysql_create_table() to create a .frm file, but the LOCK_open is already held when the call is made
1572
                                    select_field_count, true))
1 by brian
clean slate
1573
    {
1574
      if (create_info->table_existed &&
1575
          !(create_info->options & HA_LEX_CREATE_TMP_TABLE))
1576
      {
1577
        /*
1578
          This means that someone created table underneath server
1579
          or it was created via different mysqld front-end to the
1580
          cluster. We don't have much options but throw an error.
1581
        */
1582
        my_error(ER_TABLE_EXISTS_ERROR, MYF(0), create_table->table_name);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1583
        return(0);
1 by brian
clean slate
1584
      }
1585
1586
      if (!(create_info->options & HA_LEX_CREATE_TMP_TABLE))
1587
      {
398.1.10 by Monty Taylor
Actually removed VOID() this time.
1588
        pthread_mutex_lock(&LOCK_open);
520.1.22 by Brian Aker
Second pass of thd cleanup
1589
        if (reopen_name_locked_table(session, create_table, false))
1 by brian
clean slate
1590
        {
1591
          quick_rm_table(create_info->db_type, create_table->db,
1592
                         table_case_name(create_info, create_table->table_name),
1593
                         0);
1594
        }
1595
        else
1596
          table= create_table->table;
398.1.10 by Monty Taylor
Actually removed VOID() this time.
1597
        pthread_mutex_unlock(&LOCK_open);
1 by brian
clean slate
1598
      }
1599
      else
1600
      {
520.1.22 by Brian Aker
Second pass of thd cleanup
1601
        if (!(table= open_table(session, create_table, (bool*) 0,
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
1602
                                DRIZZLE_OPEN_TEMPORARY_ONLY)) &&
1 by brian
clean slate
1603
            !create_info->table_existed)
1604
        {
1605
          /*
1606
            This shouldn't happen as creation of temporary table should make
1607
            it preparable for open. But let us do close_temporary_table() here
1608
            just in case.
1609
          */
520.1.22 by Brian Aker
Second pass of thd cleanup
1610
          drop_temporary_table(session, create_table);
1 by brian
clean slate
1611
        }
1612
      }
1613
    }
1614
    if (!table)                                   // open failed
51.2.2 by Patrick Galbraith
Removed DBUGs from
1615
      return(0);
1 by brian
clean slate
1616
  }
1617
1618
  table->reginfo.lock_type=TL_WRITE;
1619
  hooks->prelock(&table, 1);                    // Call prelock hooks
520.1.22 by Brian Aker
Second pass of thd cleanup
1620
  if (! ((*lock)= mysql_lock_tables(session, &table, 1,
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
1621
                                    DRIZZLE_LOCK_IGNORE_FLUSH, &not_used)) ||
1 by brian
clean slate
1622
        hooks->postlock(&table, 1))
1623
  {
1624
    if (*lock)
1625
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
1626
      mysql_unlock_tables(session, *lock);
1 by brian
clean slate
1627
      *lock= 0;
1628
    }
1629
1630
    if (!create_info->table_existed)
520.1.22 by Brian Aker
Second pass of thd cleanup
1631
      drop_open_table(session, table, create_table->db, create_table->table_name);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1632
    return(0);
1 by brian
clean slate
1633
  }
51.2.2 by Patrick Galbraith
Removed DBUGs from
1634
  return(table);
1 by brian
clean slate
1635
}
1636
1637
1638
int
1639
select_create::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
1640
{
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
1641
  DRIZZLE_LOCK *extra_lock= NULL;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1642
1 by brian
clean slate
1643
575.1.3 by Monty Taylor
Moved some stuff out of handler.h.
1644
  Tableop_hooks *hook_ptr= NULL;
1 by brian
clean slate
1645
  /*
1646
    For row-based replication, the CREATE-SELECT statement is written
1647
    in two pieces: the first one contain the CREATE TABLE statement
1648
    necessary to create the table and the second part contain the rows
1649
    that should go into the table.
1650
1651
    For non-temporary tables, the start of the CREATE-SELECT
1652
    implicitly commits the previous transaction, and all events
1653
    forming the statement will be stored the transaction cache. At end
1654
    of the statement, the entire statement is committed as a
1655
    transaction, and all events are written to the binary log.
1656
1657
    On the master, the table is locked for the duration of the
1658
    statement, but since the CREATE part is replicated as a simple
1659
    statement, there is no way to lock the table for accesses on the
1660
    slave.  Hence, we have to hold on to the CREATE part of the
1661
    statement until the statement has finished.
1662
   */
575.1.3 by Monty Taylor
Moved some stuff out of handler.h.
1663
  class MY_HOOKS : public Tableop_hooks {
1 by brian
clean slate
1664
  public:
327.2.4 by Brian Aker
Refactoring table.h
1665
    MY_HOOKS(select_create *x, TableList *create_table,
1666
             TableList *select_tables)
1 by brian
clean slate
1667
      : ptr(x), all_tables(*create_table)
1668
      {
1669
        all_tables.next_global= select_tables;
1670
      }
1671
1672
  private:
798.2.16 by Brian Aker
Cleanup internals to session.
1673
    virtual int do_postlock(Table **, uint32_t)
1 by brian
clean slate
1674
    {
798.2.16 by Brian Aker
Cleanup internals to session.
1675
      /*
1 by brian
clean slate
1676
        ptr->binlog_show_create_table(tables, count);
798.2.16 by Brian Aker
Cleanup internals to session.
1677
      */
1 by brian
clean slate
1678
      return 0;
1679
    }
1680
1681
    select_create *ptr;
327.2.4 by Brian Aker
Refactoring table.h
1682
    TableList all_tables;
1 by brian
clean slate
1683
  };
1684
1685
  MY_HOOKS hooks(this, create_table, select_tables);
1686
  hook_ptr= &hooks;
1687
1688
  unit= u;
1689
1690
  /*
1691
    Start a statement transaction before the create if we are using
1692
    row-based replication for the statement.  If we are creating a
1693
    temporary table, we need to start a statement transaction.
1694
  */
1695
520.1.22 by Brian Aker
Second pass of thd cleanup
1696
  if (!(table= create_table_from_items(session, create_info, create_table,
1 by brian
clean slate
1697
                                       alter_info, &values,
1698
                                       &extra_lock, hook_ptr)))
51.2.2 by Patrick Galbraith
Removed DBUGs from
1699
    return(-1);				// abort() deletes table
1 by brian
clean slate
1700
1701
  if (extra_lock)
1702
  {
51.2.2 by Patrick Galbraith
Removed DBUGs from
1703
    assert(m_plock == NULL);
1 by brian
clean slate
1704
1705
    if (create_info->options & HA_LEX_CREATE_TMP_TABLE)
1706
      m_plock= &m_lock;
1707
    else
520.1.22 by Brian Aker
Second pass of thd cleanup
1708
      m_plock= &session->extra_lock;
1 by brian
clean slate
1709
1710
    *m_plock= extra_lock;
1711
  }
1712
1713
  if (table->s->fields < values.elements)
1714
  {
1715
    my_error(ER_WRONG_VALUE_COUNT_ON_ROW, MYF(0), 1);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1716
    return(-1);
1 by brian
clean slate
1717
  }
1718
1719
 /* First field to copy */
1720
  field= table->field+table->s->fields - values.elements;
1721
1722
  /* Mark all fields that are given values */
1723
  for (Field **f= field ; *f ; f++)
1724
    bitmap_set_bit(table->write_set, (*f)->field_index);
1725
1726
  /* Don't set timestamp if used */
1727
  table->timestamp_field_type= TIMESTAMP_NO_AUTO_SET;
1728
  table->next_number_field=table->found_next_number_field;
1729
1730
  restore_record(table,s->default_values);      // Get empty record
520.1.22 by Brian Aker
Second pass of thd cleanup
1731
  session->cuted_fields=0;
1 by brian
clean slate
1732
  if (info.ignore || info.handle_duplicates != DUP_ERROR)
1733
    table->file->extra(HA_EXTRA_IGNORE_DUP_KEY);
1734
  if (info.handle_duplicates == DUP_REPLACE)
1735
    table->file->extra(HA_EXTRA_WRITE_CAN_REPLACE);
1736
  if (info.handle_duplicates == DUP_UPDATE)
1737
    table->file->extra(HA_EXTRA_INSERT_WITH_UPDATE);
1738
  table->file->ha_start_bulk_insert((ha_rows) 0);
520.1.22 by Brian Aker
Second pass of thd cleanup
1739
  session->abort_on_warning= !info.ignore;
1740
  if (check_that_all_fields_are_given_values(session, table, table_list))
51.2.2 by Patrick Galbraith
Removed DBUGs from
1741
    return(1);
1 by brian
clean slate
1742
  table->mark_columns_needed_for_insert();
1743
  table->file->extra(HA_EXTRA_WRITE_CACHE);
51.2.2 by Patrick Galbraith
Removed DBUGs from
1744
  return(0);
1 by brian
clean slate
1745
}
1746
1747
void select_create::store_values(List<Item> &values)
1748
{
520.1.22 by Brian Aker
Second pass of thd cleanup
1749
  fill_record(session, field, values, 1);
1 by brian
clean slate
1750
}
1751
1752
482 by Brian Aker
Remove uint.
1753
void select_create::send_error(uint32_t errcode,const char *err)
1 by brian
clean slate
1754
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1755
1 by brian
clean slate
1756
1757
  /*
1758
    This will execute any rollbacks that are necessary before writing
1759
    the transcation cache.
1760
1761
    We disable the binary log since nothing should be written to the
1762
    binary log.  This disabling is important, since we potentially do
1763
    a "roll back" of non-transactional tables by removing the table,
1764
    and the actual rollback might generate events that should not be
1765
    written to the binary log.
1766
1767
  */
1768
  select_insert::send_error(errcode, err);
1769
51.2.2 by Patrick Galbraith
Removed DBUGs from
1770
  return;
1 by brian
clean slate
1771
}
1772
1773
1774
bool select_create::send_eof()
1775
{
1776
  bool tmp=select_insert::send_eof();
1777
  if (tmp)
1778
    abort();
1779
  else
1780
  {
1781
    /*
1782
      Do an implicit commit at end of statement for non-temporary
1783
      tables.  This can fail, but we should unlock the table
1784
      nevertheless.
1785
    */
1786
    if (!table->s->tmp_table)
1787
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
1788
      ha_autocommit_or_rollback(session, 0);
1789
      end_active_trans(session);
1 by brian
clean slate
1790
    }
1791
1792
    table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
1793
    table->file->extra(HA_EXTRA_WRITE_CANNOT_REPLACE);
1794
    if (m_plock)
1795
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
1796
      mysql_unlock_tables(session, *m_plock);
1 by brian
clean slate
1797
      *m_plock= NULL;
1798
      m_plock= NULL;
1799
    }
1800
  }
1801
  return tmp;
1802
}
1803
1804
1805
void select_create::abort()
1806
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1807
1 by brian
clean slate
1808
1809
  /*
1810
    In select_insert::abort() we roll back the statement, including
1811
    truncating the transaction cache of the binary log. To do this, we
1812
    pretend that the statement is transactional, even though it might
1813
    be the case that it was not.
1814
1815
    We roll back the statement prior to deleting the table and prior
1816
    to releasing the lock on the table, since there might be potential
1817
    for failure if the rollback is executed after the drop or after
1818
    unlocking the table.
1819
1820
    We also roll back the statement regardless of whether the creation
1821
    of the table succeeded or not, since we need to reset the binary
1822
    log state.
1823
  */
1824
  select_insert::abort();
520.1.22 by Brian Aker
Second pass of thd cleanup
1825
  session->transaction.stmt.modified_non_trans_table= false;
1 by brian
clean slate
1826
1827
1828
  if (m_plock)
1829
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
1830
    mysql_unlock_tables(session, *m_plock);
1 by brian
clean slate
1831
    *m_plock= NULL;
1832
    m_plock= NULL;
1833
  }
1834
1835
  if (table)
1836
  {
1837
    table->file->extra(HA_EXTRA_NO_IGNORE_DUP_KEY);
1838
    table->file->extra(HA_EXTRA_WRITE_CANNOT_REPLACE);
1839
    if (!create_info->table_existed)
520.1.22 by Brian Aker
Second pass of thd cleanup
1840
      drop_open_table(session, table, create_table->db, create_table->table_name);
1 by brian
clean slate
1841
    table=0;                                    // Safety
1842
  }
51.2.2 by Patrick Galbraith
Removed DBUGs from
1843
  return;
1 by brian
clean slate
1844
}
1845
1846
1847
/*****************************************************************************
1848
  Instansiate templates
1849
*****************************************************************************/
1850
1851
#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION
1852
template class List_iterator_fast<List_item>;
1853
#endif /* HAVE_EXPLICIT_TEMPLATE_INSTANTIATION */