-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathsql_update.cc
3084 lines (2671 loc) · 115 KB
/
sql_update.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
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
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
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, version 2.0, for more details.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
// Handle UPDATE queries (both single- and multi-table).
#include "sql/sql_update.h"
#include <algorithm>
#include <atomic>
#include <bit>
#include <cassert>
#include <cstdio>
#include <cstring>
#include <memory>
#include <utility>
#include "field_types.h"
#include "lex_string.h"
#include "mem_root_deque.h" // mem_root_deque
#include "my_alloc.h"
#include "my_base.h"
#include "my_bitmap.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_io.h"
#include "my_sys.h"
#include "my_table_map.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "mysql/service_mysql_alloc.h"
#include "mysql/strings/m_ctype.h"
#include "mysql_com.h"
#include "mysqld_error.h"
#include "prealloced_array.h" // Prealloced_array
#include "scope_guard.h"
#include "sql/auth/auth_acls.h"
#include "sql/auth/auth_common.h" // check_grant, check_access
#include "sql/binlog.h" // mysql_bin_log
#include "sql/debug_sync.h" // DEBUG_SYNC
#include "sql/derror.h" // ER_THD
#include "sql/field.h" // Field
#include "sql/filesort.h" // Filesort
#include "sql/handler.h"
#include "sql/item.h" // Item
#include "sql/item_json_func.h" // Item_json_func
#include "sql/item_subselect.h" // Item_subselect
#include "sql/iterators/basic_row_iterators.h"
#include "sql/iterators/row_iterator.h"
#include "sql/iterators/timing_iterator.h"
#include "sql/iterators/update_rows_iterator.h"
#include "sql/join_optimizer/access_path.h"
#include "sql/join_optimizer/bit_utils.h"
#include "sql/join_optimizer/walk_access_paths.h"
#include "sql/key.h" // is_key_used
#include "sql/key_spec.h"
#include "sql/locked_tables_list.h"
#include "sql/mdl.h"
#include "sql/mem_root_array.h"
#include "sql/mysqld.h" // stage_... mysql_tmpdir
#include "sql/opt_explain.h" // Modification_plan
#include "sql/opt_explain_format.h"
#include "sql/opt_trace.h" // Opt_trace_object
#include "sql/opt_trace_context.h"
#include "sql/parse_tree_node_base.h"
#include "sql/partition_info.h" // partition_info
#include "sql/protocol.h"
#include "sql/psi_memory_key.h"
#include "sql/query_options.h"
#include "sql/range_optimizer/partition_pruning.h"
#include "sql/range_optimizer/path_helpers.h"
#include "sql/range_optimizer/range_optimizer.h"
#include "sql/select_lex_visitor.h"
#include "sql/sql_array.h"
#include "sql/sql_base.h" // check_record, fill_record
#include "sql/sql_bitmap.h"
#include "sql/sql_class.h"
#include "sql/sql_const.h"
#include "sql/sql_data_change.h"
#include "sql/sql_delete.h"
#include "sql/sql_error.h"
#include "sql/sql_executor.h"
#include "sql/sql_lex.h"
#include "sql/sql_list.h"
#include "sql/sql_opt_exec_shared.h"
#include "sql/sql_optimizer.h" // substitute_gc
#include "sql/sql_partition.h" // partition_key_modified
#include "sql/sql_resolver.h" // setup_order
#include "sql/sql_select.h"
#include "sql/sql_tmp_table.h" // create_tmp_table
#include "sql/sql_view.h" // check_key_in_view
#include "sql/system_variables.h"
#include "sql/table.h" // TABLE
#include "sql/table_trigger_dispatcher.h" // Table_trigger_dispatcher
#include "sql/temp_table_param.h"
#include "sql/thd_raii.h"
#include "sql/transaction_info.h"
#include "sql/trigger_chain.h"
#include "sql/trigger_def.h"
#include "sql/visible_fields.h"
#include "template_utils.h"
#include "thr_lock.h"
struct COND_EQUAL;
static bool prepare_partial_update(Opt_trace_context *trace,
const mem_root_deque<Item *> &fields,
const mem_root_deque<Item *> &values);
bool Sql_cmd_update::precheck(THD *thd) {
DBUG_TRACE;
if (!multitable) {
if (check_one_table_access(thd, UPDATE_ACL, lex->query_tables)) return true;
} else {
/*
Ensure that we have UPDATE or SELECT privilege for each table
The exact privilege is checked in mysql_multi_update()
*/
for (Table_ref *tr = lex->query_tables; tr; tr = tr->next_global) {
/*
"uses_materialization()" covers the case where a prepared statement is
executed and a view is decided to be materialized during preparation.
@todo: Check whether this properly handles the case when privileges
for a view is revoked during execution of a prepared statement.
*/
if (tr->is_derived() || tr->uses_materialization())
tr->grant.privilege = SELECT_ACL;
else {
auto chk = [&](long want_access) {
const bool ignore_errors = (want_access == UPDATE_ACL);
return check_access(thd, want_access, tr->db, &tr->grant.privilege,
&tr->grant.m_internal, false, ignore_errors) ||
check_grant(thd, want_access, tr, false, 1, ignore_errors);
};
if (chk(UPDATE_ACL)) {
// Verify that lock has not yet been acquired for request.
assert(tr->mdl_request.ticket == nullptr);
// If there is no UPDATE privilege on this table we want to avoid
// acquiring SHARED_WRITE MDL. It is safe to change lock type to
// SHARE_READ in such a case, since attempts to update column in
// this table will be rejected by later column-level privilege
// check.
// If a prepared statement/stored procedure is re-executed after
// the tables and privileges have been modified such that the
// ps/sp will attempt to update the SR-locked table, a
// reprepare/recompilation will restore the mdl request to SW.
//
// There are two possible cases in which we could try to update the SR
// locked table, here, in theory:
//
// 1) There was no movement of columns between tables mentioned in
// UPDATE statement.
// We didn't have privilege on the table which we try to update
// before but i was granted. This case is not relevant for PS, as
// in it we will get an error during prepare phase and no PS will
// be created. For SP first execution of statement will fail during
// prepare phase as well, however, SP will stay around, and the
// second execution attempt will just cause another prepare.
// 2) Some columns has been moved between tables mentioned in UPDATE
// statement,
// so the table which was read-only initially (and on which we
// didn't have UPDATE privilege then, so it was SR-locked), now
// needs to be updated. The change in table definition will be
// detected at open_tables() time and cause re-prepare in this
// case.
tr->mdl_request.type = MDL_SHARED_READ;
if (chk(SELECT_ACL)) return true;
}
} // else
} // for
} // else
return false;
}
bool Sql_cmd_update::check_privileges(THD *thd) {
DBUG_TRACE;
Query_block *const select = lex->query_block;
if (check_all_table_privileges(thd)) return true;
// @todo: replace individual calls for privilege checking with
// Query_block::check_column_privileges(), but only when fields_list
// is no longer reused for an UPDATE statement.
if (select->m_current_table_nest &&
check_privileges_for_join(thd, select->m_current_table_nest))
return true;
thd->want_privilege = SELECT_ACL;
if (select->where_cond() != nullptr &&
select->where_cond()->walk(&Item::check_column_privileges,
enum_walk::PREFIX, pointer_cast<uchar *>(thd)))
return true;
if (check_privileges_for_list(thd, original_fields, UPDATE_ACL)) return true;
if (check_privileges_for_list(thd, *update_value_list, SELECT_ACL))
return true;
for (ORDER *order = select->order_list.first; order; order = order->next) {
if ((*order->item)
->walk(&Item::check_column_privileges, enum_walk::PREFIX,
pointer_cast<uchar *>(thd)))
return true;
}
thd->want_privilege = SELECT_ACL;
if (select->check_privileges_for_subqueries(thd)) return true;
return false;
}
/**
True if the table's input and output record buffers are comparable using
compare_records(TABLE*).
*/
bool records_are_comparable(const TABLE *table) {
return ((table->file->ha_table_flags() & HA_PARTIAL_COLUMN_READ) == 0) ||
bitmap_is_subset(table->write_set, table->read_set);
}
/**
Compares the input and output record buffers of the table to see if a row
has changed. The algorithm iterates over updated columns and if they are
nullable compares NULL bits in the buffer before comparing actual
data. Special care must be taken to compare only the relevant NULL bits and
mask out all others as they may be undefined. The storage engine will not
and should not touch them.
@param table The table to evaluate.
@return true if row has changed.
@return false otherwise.
*/
bool compare_records(const TABLE *table) {
assert(records_are_comparable(table));
if ((table->file->ha_table_flags() & HA_PARTIAL_COLUMN_READ) != 0) {
/*
Storage engine may not have read all columns of the record. Fields
(including NULL bits) not in the write_set may not have been read and
can therefore not be compared.
*/
for (Field **ptr = table->field; *ptr != nullptr; ptr++) {
Field *field = *ptr;
if (bitmap_is_set(table->write_set, field->field_index())) {
if (field->is_nullable()) {
uchar null_byte_index = field->null_offset();
if (((table->record[0][null_byte_index]) & field->null_bit) !=
((table->record[1][null_byte_index]) & field->null_bit))
return true;
}
if (field->cmp_binary_offset(table->s->rec_buff_length)) return true;
}
}
return false;
}
/*
The storage engine has read all columns, so it's safe to compare all bits
including those not in the write_set. This is cheaper than the
field-by-field comparison done above.
*/
if (table->s->blob_fields + table->s->varchar_fields == 0)
// Fixed-size record: do bitwise comparison of the records
return cmp_record(table, record[1]);
/* Compare null bits */
if (memcmp(table->null_flags, table->null_flags + table->s->rec_buff_length,
table->s->null_bytes))
return true; // Diff in NULL value
/* Compare updated fields */
for (Field **ptr = table->field; *ptr; ptr++) {
if (bitmap_is_set(table->write_set, (*ptr)->field_index()) &&
(*ptr)->cmp_binary_offset(table->s->rec_buff_length))
return true;
}
return false;
}
/**
Check that all fields are base table columns.
Replace columns from views with base table columns.
@param thd thread handler
@param items Items for check
@return false if success, true if error (OOM)
*/
bool Sql_cmd_update::make_base_table_fields(THD *thd,
mem_root_deque<Item *> *items) {
for (auto it = items->begin(); it != items->end(); ++it) {
Item *item = *it;
assert(!item->hidden);
// Save original item for privilege checking
original_fields.push_back(item);
/*
Make temporary copy of Item_field, to avoid influence of changing
result_field on Item_ref which refer on this field
*/
Item_field *const base_table_field = item->field_for_view_update();
assert(base_table_field != nullptr);
Item_field *const cloned_field = new Item_field(thd, base_table_field);
if (cloned_field == nullptr) return true; /* purecov: inspected */
*it = cloned_field;
// WL#6570 remove-after-qa
assert(thd->stmt_arena->is_regular() || !thd->lex->is_exec_started());
}
return false;
}
/**
Check if all expressions in list are constant expressions
@param[in] values List of expressions
@retval true Only constant expressions
@retval false At least one non-constant expression
*/
static bool check_constant_expressions(const mem_root_deque<Item *> &values) {
DBUG_TRACE;
for (Item *value : values) {
if (!value->const_for_execution()) {
DBUG_PRINT("exit", ("expression is not constant"));
return false;
}
}
DBUG_PRINT("exit", ("expression is constant"));
return true;
}
/**
Perform an update to a set of rows in a single table.
@param thd Thread handler
@returns false if success, true if error
*/
bool Sql_cmd_update::update_single_table(THD *thd) {
DBUG_TRACE;
myf error_flags = MYF(0); /**< Flag for fatal errors */
/*
Most recent handler error
= 1: Some non-handler error
= 0: Success
= -1: No more rows to process, or reached limit
*/
int error = 0;
Query_block *const query_block = lex->query_block;
Query_expression *const unit = lex->unit;
Table_ref *const table_list = query_block->get_table_list();
Table_ref *const update_table_ref = table_list->updatable_base_table();
TABLE *const table = update_table_ref->table;
assert(table->pos_in_table_list == update_table_ref);
const bool transactional_table = table->file->has_transactions();
const bool has_update_triggers =
table->triggers && table->triggers->has_update_triggers();
const bool has_after_triggers =
has_update_triggers &&
table->triggers->has_triggers(TRG_EVENT_UPDATE, TRG_ACTION_AFTER);
Opt_trace_context *const trace = &thd->opt_trace;
if (unit->set_limit(thd, unit->global_parameters()))
return true; /* purecov: inspected */
ha_rows limit = unit->select_limit_cnt;
const bool using_limit = limit != HA_POS_ERROR;
if (limit == 0 && thd->lex->is_explain()) {
Modification_plan plan(thd, MT_UPDATE, table, "LIMIT is zero", true, 0);
bool err = explain_single_table_modification(thd, thd, &plan, query_block);
return err;
}
// Used to track whether there are no rows that need to be read
bool no_rows = limit == 0;
THD::killed_state killed_status = THD::NOT_KILLED;
assert(CountHiddenFields(query_block->fields) == 0);
COPY_INFO update(COPY_INFO::UPDATE_OPERATION, &query_block->fields,
update_value_list);
if (update.add_function_default_columns(table, table->write_set)) return true;
const bool safe_update = thd->variables.option_bits & OPTION_SAFE_UPDATES;
assert(!(table->all_partitions_pruned_away || m_empty_query));
Item *conds = nullptr;
ORDER *order = query_block->order_list.first;
if (!no_rows && query_block->get_optimizable_conditions(thd, &conds, nullptr))
return true; /* purecov: inspected */
/*
See if we can substitute expressions with equivalent generated
columns in the WHERE and ORDER BY clauses of the UPDATE statement.
It is unclear if this is best to do before or after the other
substitutions performed by substitute_for_best_equal_field(). Do
it here for now, to keep it consistent with how multi-table
updates are optimized in JOIN::optimize().
*/
if (conds || order)
static_cast<void>(substitute_gc(thd, query_block, conds, nullptr, order));
if (conds != nullptr) {
if (table_list->check_option) {
// See the explanation in multi-table UPDATE code path
// (Query_result_update::prepare).
table_list->check_option->walk(&Item::disable_constant_propagation,
enum_walk::POSTFIX, nullptr);
}
COND_EQUAL *cond_equal = nullptr;
Item::cond_result result;
if (optimize_cond(thd, &conds, &cond_equal,
query_block->m_current_table_nest, &result))
return true;
if (result == Item::COND_FALSE) {
no_rows = true; // Impossible WHERE
if (thd->lex->is_explain()) {
Modification_plan plan(thd, MT_UPDATE, table, "Impossible WHERE", true,
0);
bool err =
explain_single_table_modification(thd, thd, &plan, query_block);
return err;
}
}
if (conds != nullptr) {
conds = substitute_for_best_equal_field(thd, conds, cond_equal, nullptr);
if (conds == nullptr) return true;
conds->update_used_tables();
}
}
/*
Also try a second time after locking, to prune when subqueries and
stored programs can be evaluated.
*/
if (table->part_info && !no_rows) {
if (prune_partitions(thd, table, query_block, conds))
return true; /* purecov: inspected */
if (table->all_partitions_pruned_away) {
no_rows = true;
if (thd->lex->is_explain()) {
Modification_plan plan(thd, MT_UPDATE, table,
"No matching rows after partition pruning", true,
0);
bool err =
explain_single_table_modification(thd, thd, &plan, query_block);
return err;
}
my_ok(thd);
return false;
}
}
// Initialize the cost model that will be used for this table
table->init_cost_model(thd->cost_model());
/* Update the table->file->stats.records number */
table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK);
table->mark_columns_needed_for_update(thd,
false /*mark_binlog_columns=false*/);
AccessPath *range_scan = nullptr;
join_type type = JT_UNKNOWN;
auto cleanup = create_scope_guard([&range_scan, table] {
if (range_scan != nullptr) ::destroy_at(range_scan);
table->set_keyread(false);
table->file->ha_index_or_rnd_end();
free_io_cache(table);
filesort_free_buffers(table, true);
});
if (conds &&
thd->optimizer_switch_flag(OPTIMIZER_SWITCH_ENGINE_CONDITION_PUSHDOWN)) {
table->file->cond_push(conds);
}
{ // Enter scope for optimizer trace wrapper
Opt_trace_object wrapper(&thd->opt_trace);
wrapper.add_utf8_table(update_table_ref);
if (!no_rows && conds != nullptr) {
Key_map keys_to_use(Key_map::ALL_BITS), needed_reg_dummy;
MEM_ROOT temp_mem_root(key_memory_test_quick_select_exec,
thd->variables.range_alloc_block_size);
no_rows = test_quick_select(
thd, thd->mem_root, &temp_mem_root, keys_to_use, 0, 0,
limit, safe_update, ORDER_NOT_RELEVANT, table,
/*skip_records_in_range=*/false, conds, &needed_reg_dummy,
table->force_index, query_block, &range_scan) < 0;
if (thd->is_error()) return true;
}
if (no_rows) {
if (thd->lex->is_explain()) {
Modification_plan plan(thd, MT_UPDATE, table, "Impossible WHERE", true,
0);
bool err =
explain_single_table_modification(thd, thd, &plan, query_block);
return err;
}
char buff[MYSQL_ERRMSG_SIZE];
snprintf(buff, sizeof(buff), ER_THD(thd, ER_UPDATE_INFO), 0L, 0L,
(long)thd->get_stmt_da()->current_statement_cond_count());
my_ok(thd, 0, 0, buff);
DBUG_PRINT("info", ("0 records updated"));
return false;
}
} // Ends scope for optimizer trace wrapper
/* If running in safe sql mode, don't allow updates without keys */
if (table->quick_keys.is_clear_all()) {
thd->server_status |= SERVER_QUERY_NO_INDEX_USED;
/*
No safe update error will be returned if:
1) Statement is an EXPLAIN OR
2) LIMIT is present.
Append the first warning (if any) to the error message. Allows the user
to understand why index access couldn't be chosen.
*/
if (!lex->is_explain() && safe_update && !using_limit) {
my_error(ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE, MYF(0),
thd->get_stmt_da()->get_first_condition_message());
return true;
}
}
if (query_block->has_ft_funcs() && init_ftfuncs(thd, query_block))
return true; /* purecov: inspected */
if (conds != nullptr) table->update_const_key_parts(conds);
order = simple_remove_const(order, conds);
bool need_sort;
bool reverse = false;
bool used_key_is_modified = false;
uint used_index;
{
ORDER_with_src order_src(order, ESC_ORDER_BY, /*const_optimized=*/true);
used_index = get_index_for_order(&order_src, table, limit, range_scan,
&need_sort, &reverse);
if (range_scan != nullptr) {
// May have been changed by get_index_for_order().
type = calc_join_type(range_scan);
}
}
if (need_sort) { // Assign table scan index to check below for modified key
// fields:
used_index = table->file->key_used_on_scan;
}
if (used_index != MAX_KEY) { // Check if we are modifying a key that we are
// used to search with:
used_key_is_modified = is_key_used(table, used_index, table->write_set);
} else if (range_scan) {
/*
select->range_scan != NULL and used_index == MAX_KEY happens for index
merge and should be handled in a different way.
*/
used_key_is_modified = (!unique_key_range(range_scan) &&
uses_index_on_fields(range_scan, table->write_set));
}
if (table->part_info)
used_key_is_modified |= table->part_info->num_partitions_used() > 1 &&
partition_key_modified(table, table->write_set);
const bool using_filesort = order && need_sort;
table->mark_columns_per_binlog_row_image(thd);
if (prepare_partial_update(trace, query_block->fields, *update_value_list))
return true; /* purecov: inspected */
if (table->setup_partial_update()) return true; /* purecov: inspected */
ha_rows updated_rows = 0;
ha_rows found_rows = 0;
unique_ptr_destroy_only<Filesort> fsort;
unique_ptr_destroy_only<RowIterator> iterator;
{ // Start of scope for Modification_plan
ha_rows rows;
if (range_scan)
rows = range_scan->num_output_rows();
else if (!conds && !need_sort && limit != HA_POS_ERROR)
rows = limit;
else {
update_table_ref->fetch_number_of_rows();
rows = table->file->stats.records;
}
DEBUG_SYNC(thd, "before_single_update");
Modification_plan plan(thd, MT_UPDATE, table, type, range_scan, conds,
used_index, limit,
(!using_filesort && (used_key_is_modified || order)),
using_filesort, used_key_is_modified, rows);
DEBUG_SYNC(thd, "planned_single_update");
if (thd->lex->is_explain()) {
bool err =
explain_single_table_modification(thd, thd, &plan, query_block);
return err;
}
if (thd->lex->is_ignore()) table->file->ha_extra(HA_EXTRA_IGNORE_DUP_KEY);
if (used_key_is_modified || order) {
/*
We can't update table directly; We must first search after all
matching rows before updating the table!
*/
/* note: We avoid sorting if we sort on the used index */
if (using_filesort) {
/*
Doing an ORDER BY; Let filesort find and sort the rows we are going
to update
NOTE: filesort will call table->prepare_for_position()
*/
JOIN join(thd, query_block); // Only for holding examined_rows.
AccessPath *path = create_table_access_path(
thd, table, range_scan, /*table_ref=*/nullptr,
/*position=*/nullptr, /*count_examined_rows=*/true);
if (conds != nullptr) {
path = NewFilterAccessPath(thd, path, conds);
}
// Force filesort to sort by position.
fsort.reset(new (thd->mem_root) Filesort(
thd, {table}, /*keep_buffers=*/false, order, limit,
/*remove_duplicates=*/false,
/*force_sort_rowids=*/true, /*unwrap_rollup=*/false));
path = NewSortAccessPath(thd, path, fsort.get(), order,
/*count_examined_rows=*/false);
iterator = CreateIteratorFromAccessPath(
thd, path, &join, /*eligible_for_batch_mode=*/true);
// Prevent cleanup in JOIN::destroy() and in the cleanup condition
// guard, to avoid double-destroy of the SortingIterator.
table->sorting_iterator = nullptr;
if (iterator == nullptr || iterator->Init()) return true;
thd->inc_examined_row_count(join.examined_rows);
/*
Filesort has already found and selected the rows we want to update,
so we don't need the where clause
*/
if (range_scan != nullptr) {
::destroy_at(range_scan);
range_scan = nullptr;
}
conds = nullptr;
} else {
/*
We are doing a search on a key that is updated. In this case
we go through the matching rows, save a pointer to them and
update these in a separate loop based on the pointer. In the end,
we get a result file that looks exactly like what filesort uses
internally, which allows us to read from it
using SortFileIndirectIterator.
TODO: Find something less ugly.
*/
Key_map covering_keys_for_cond; // @todo - move this
if (used_index < MAX_KEY && covering_keys_for_cond.is_set(used_index))
table->set_keyread(true);
table->prepare_for_position();
table->file->try_semi_consistent_read(true);
auto end_semi_consistent_read = create_scope_guard(
[table] { table->file->try_semi_consistent_read(false); });
/*
When we get here, we have one of the following options:
A. used_index == MAX_KEY
This means we should use full table scan, and start it with
init_read_record call
B. used_index != MAX_KEY
B.1 quick select is used, start the scan with init_read_record
B.2 quick select is not used, this is full index scan (with LIMIT)
Full index scan must be started with init_read_record_idx
*/
AccessPath *path;
if (used_index == MAX_KEY || range_scan) {
path = create_table_access_path(thd, table, range_scan,
/*table_ref=*/nullptr,
/*position=*/nullptr,
/*count_examined_rows=*/false);
} else {
empty_record(table);
path = NewIndexScanAccessPath(thd, table, used_index,
/*use_order=*/true, reverse,
/*count_examined_rows=*/false);
}
iterator = CreateIteratorFromAccessPath(
thd, path, /*join=*/nullptr, /*eligible_for_batch_mode=*/true);
// Prevent cleanup in JOIN::destroy() and in the cleanup condition
// guard, to avoid double-destroy of the SortingIterator.
table->sorting_iterator = nullptr;
if (iterator == nullptr || iterator->Init()) {
return true;
}
THD_STAGE_INFO(thd, stage_searching_rows_for_update);
ha_rows tmp_limit = limit;
IO_CACHE *tempfile =
(IO_CACHE *)my_malloc(key_memory_TABLE_sort_io_cache,
sizeof(IO_CACHE), MYF(MY_FAE | MY_ZEROFILL));
if (open_cached_file(tempfile, mysql_tmpdir, TEMP_PREFIX,
DISK_BUFFER_SIZE, MYF(MY_WME))) {
my_free(tempfile);
return true;
}
while (!(error = iterator->Read()) && !thd->killed) {
assert(!thd->is_error());
thd->inc_examined_row_count(1);
if (conds != nullptr) {
const bool skip_record = conds->val_int() == 0;
if (thd->is_error()) {
error = 1;
/*
Don't try unlocking the row if skip_record reported an error
since in this case the transaction might have been rolled back
already.
*/
break;
}
if (skip_record) {
table->file->unlock_row();
continue;
}
}
if (table->file->was_semi_consistent_read())
continue; /* repeat the read of the same row if it still exists */
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) {
error = -1;
break;
}
}
if (thd->killed && !error) // Aborted
error = 1; /* purecov: inspected */
limit = tmp_limit;
end_semi_consistent_read.reset();
if (used_index < MAX_KEY && covering_keys_for_cond.is_set(used_index))
table->set_keyread(false);
table->file->ha_index_or_rnd_end();
iterator.reset();
// Change reader to use tempfile
if (reinit_io_cache(tempfile, READ_CACHE, 0L, false, false))
error = 1; /* purecov: inspected */
if (error >= 0) {
close_cached_file(tempfile);
my_free(tempfile);
return error > 0;
}
iterator = NewIterator<SortFileIndirectIterator>(
thd, thd->mem_root, Mem_root_array<TABLE *>{table}, tempfile,
/*ignore_not_found_rows=*/false, /*has_null_flags=*/false,
/*examined_rows=*/nullptr);
if (iterator->Init()) return true;
if (range_scan != nullptr) {
::destroy_at(range_scan);
range_scan = nullptr;
}
conds = nullptr;
}
} else {
// No ORDER BY or updated key underway, so we can use a regular read.
iterator =
init_table_iterator(thd, table, range_scan,
/*table_ref=*/nullptr, /*position=*/nullptr,
/*ignore_not_found_rows=*/false,
/*count_examined_rows=*/false);
if (iterator == nullptr) return true; /* purecov: inspected */
}
table->file->try_semi_consistent_read(true);
auto end_semi_consistent_read = create_scope_guard(
[table] { table->file->try_semi_consistent_read(false); });
/*
Generate an error (in TRADITIONAL mode) or warning
when trying to set a NOT NULL field to NULL.
*/
thd->check_for_truncated_fields = CHECK_FIELD_WARN;
thd->num_truncated_fields = 0L;
THD_STAGE_INFO(thd, stage_updating);
bool will_batch;
/// read_removal is only used by NDB storage engine
bool read_removal = false;
if (has_after_triggers) {
/*
The table has AFTER UPDATE triggers that might access to subject
table and therefore might need update to be done immediately.
So we turn-off the batching.
*/
(void)table->file->ha_extra(HA_EXTRA_UPDATE_CANNOT_BATCH);
will_batch = false;
} else {
// No after update triggers, attempt to start bulk update
will_batch = !table->file->start_bulk_update();
}
if ((table->file->ha_table_flags() & HA_READ_BEFORE_WRITE_REMOVAL) &&
!thd->lex->is_ignore() && !using_limit && !has_update_triggers &&
range_scan && ::used_index(range_scan) != MAX_KEY &&
check_constant_expressions(*update_value_list))
read_removal = table->check_read_removal(::used_index(range_scan));
// If the update is batched, we cannot do partial update, so turn it off.
if (will_batch) table->cleanup_partial_update(); /* purecov: inspected */
uint dup_key_found;
while (true) {
error = iterator->Read();
if (error || thd->killed) break;
thd->inc_examined_row_count(1);
if (conds != nullptr) {
const bool skip_record = conds->val_int() == 0;
if (thd->is_error()) {
error = 1;
break;
}
if (skip_record) {
table->file
->unlock_row(); // Row failed condition check, release lock
thd->get_stmt_da()->inc_current_row_for_condition();
continue;
}
}
assert(!thd->is_error());
if (table->file->was_semi_consistent_read())
/*
Reviewer: iterator is reading from the to-be-updated table or
from a tmp file.
In the latter case, if the condition of this if() is true,
it is wrong to "continue"; indeed this will pick up the _next_ row of
tempfile; it will not re-read-with-lock the current row of tempfile,
as tempfile is not an InnoDB table and not doing semi consistent read.
If that happens, we're potentially skipping a row which was found
matching! OTOH, as the rowid was written to the tempfile, it means it
matched and thus we have already re-read it in the tempfile-write loop
above and thus locked it. So we shouldn't come here. How about adding
an assertion that if reading from tmp file we shouldn't come here?
*/
continue; /* repeat the read of the same row if it still exists */
table->clear_partial_update_diffs();
store_record(table, record[1]);
bool is_row_changed = false;
if (fill_record_n_invoke_before_triggers(
thd, &update, query_block->fields, *update_value_list, table,
TRG_EVENT_UPDATE, 0, false, &is_row_changed)) {
error = 1;
break;
}
found_rows++;
if (is_row_changed) {
/*
Default function and default expression values are filled before
evaluating the view check option. Check option on view using table(s)
with default function and default expression breaks otherwise.
It is safe to not invoke CHECK OPTION for VIEW if records are same.
In this case the row is coming from the view and thus should satisfy
the CHECK OPTION.
*/
int check_result = table_list->view_check_option(thd);
if (check_result != VIEW_CHECK_OK) {
if (check_result == VIEW_CHECK_SKIP)
continue;
else if (check_result == VIEW_CHECK_ERROR) {
error = 1;
break;
}
}
/*
Existing rows in table should normally satisfy CHECK constraints. So
it should be safe to check constraints only for rows that has really
changed (i.e. after compare_records()).
In future, once addition/enabling of CHECK constraints without their
validation is supported, we might encounter old rows which do not
satisfy CHECK constraints currently enabled. However, rejecting no-op
updates to such invalid pre-existing rows won't make them valid and is
probably going to be confusing for users. So it makes sense to stick
to current behavior.
*/
if (invoke_table_check_constraints(thd, table)) {
if (thd->is_error()) {
error = 1;
break;
}
// continue when IGNORE clause is used.
continue;
}
if (will_batch) {
/*
Typically a batched handler can execute the batched jobs when:
1) When specifically told to do so
2) When it is not a good idea to batch anymore
3) When it is necessary to send batch for other reasons
(One such reason is when READ's must be performed)
1) is covered by exec_bulk_update calls.
2) and 3) is handled by the bulk_update_row method.
bulk_update_row can execute the updates including the one
defined in the bulk_update_row or not including the row
in the call. This is up to the handler implementation and can
vary from call to call.
The dup_key_found reports the number of duplicate keys found
in those updates actually executed. It only reports those if
the extra call with HA_EXTRA_IGNORE_DUP_KEY have been issued.
If this hasn't been issued it returns an error code and can
ignore this number. Thus any handler that implements batching
for UPDATE IGNORE must also handle this extra call properly.
If a duplicate key is found on the record included in this
call then it should be included in the count of dup_key_found
and error should be set to 0 (only if these errors are ignored).
*/
error = table->file->ha_bulk_update_row(
table->record[1], table->record[0], &dup_key_found);
limit += dup_key_found;
updated_rows -= dup_key_found;
} else {
/* Non-batched update */
error =
table->file->ha_update_row(table->record[1], table->record[0]);
}
if (error == 0)
updated_rows++;