-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathsql_truncate.cc
760 lines (634 loc) · 26.3 KB
/
sql_truncate.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
/* Copyright (c) 2010, 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 */
#include "sql/sql_truncate.h"
#include <stddef.h>
#include <sys/types.h>
#include "lex_string.h"
#include "my_base.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_io.h"
#include "my_sys.h"
#include "mysql/service_mysql_alloc.h"
#include "mysql/strings/m_ctype.h"
#include "mysqld.h" // table_alias_charset
#include "mysqld_error.h"
#include "scope_guard.h" // create_scope_guard
#include "sql/auth/auth_acls.h"
#include "sql/auth/auth_common.h" // DROP_ACL
#include "sql/dd/cache/dictionary_client.h" // dd::cache::Dictionary_client
#include "sql/dd/dd_schema.h" // dd::Schema_MDL_locker
#include "sql/dd/dd_table.h" // dd::table_storage_engine
#include "sql/dd/properties.h" // dd::Properties
#include "sql/dd/types/abstract_table.h" // dd::enum_table_type
#include "sql/dd/types/table.h" // dd::Table
#include "sql/debug_sync.h" // DEBUG_SYNC
#include "sql/handler.h"
#include "sql/lock.h" // MYSQL_OPEN_* flags
#include "sql/mdl.h"
#include "sql/query_options.h"
#include "sql/sql_audit.h" // mysql_event_tracking_table_access_notify
#include "sql/sql_backup_lock.h" // acquire_shared_backup_lock
#include "sql/sql_base.h" // open_and_lock_tables
#include "sql/sql_class.h" // THD
#include "sql/sql_const.h"
#include "sql/sql_lex.h"
#include "sql/sql_list.h"
#include "sql/sql_show.h" // append_identifier_*
#include "sql/sql_table.h" // write_bin_log
#include "sql/system_variables.h"
#include "sql/table.h" // TABLE
#include "sql/transaction.h" // trans_commit_stmt()
#include "sql/transaction_info.h"
#include "sql_string.h"
#include "thr_lock.h"
namespace dd {
class Table;
} // namespace dd
/**
Generate a foreign key description suitable for a error message.
@param thd Thread context.
@param fk_p Object describing foreign key in parent table.
@return A human-readable string describing the foreign key.
*/
static const char *fk_info_str(const THD *thd,
const dd::Foreign_key_parent *fk_p) {
bool res = false;
char buffer[STRING_BUFFER_USUAL_SIZE * 2];
String str(buffer, sizeof(buffer), system_charset_info);
str.length(0);
/*
`db`.`tbl`, CONSTRAINT `id`
*/
append_identifier_with_backtick(&str, fk_p->child_schema_name().c_str(),
fk_p->child_schema_name().length());
res |= str.append(".");
append_identifier_with_backtick(&str, fk_p->child_table_name().c_str(),
fk_p->child_table_name().length());
res |= str.append(", CONSTRAINT ");
append_identifier_with_backtick(&str, fk_p->fk_name().c_str(),
fk_p->fk_name().length());
return res ? nullptr : thd->strmake(str.ptr(), str.length());
}
/**
Check and emit a fatal error if the table which is going to be
affected by TRUNCATE TABLE is a parent table in some non-self-
referencing foreign key.
@remark The intention is to allow truncate only for tables that
are not dependent on other tables.
@param thd Thread context.
@param table_list Table list element for the table.
@param table_def dd::Table describing the table.
@retval false This table is not parent in a non-self-referencing foreign
key. Statement can proceed.
@retval true This table is parent in a non-self-referencing foreign key,
error was emitted.
*/
static bool fk_truncate_illegal_if_parent(THD *thd, Table_ref *table_list,
dd::Table *table_def) {
for (const dd::Foreign_key_parent *fk_p : table_def->foreign_key_parents()) {
if (my_strcasecmp(table_alias_charset, fk_p->child_schema_name().c_str(),
table_list->db) == 0 &&
my_strcasecmp(table_alias_charset, fk_p->child_table_name().c_str(),
table_list->table_name) == 0)
continue;
/* Table is parent in a non-self-referencing foreign key. */
my_error(ER_TRUNCATE_ILLEGAL_FK, MYF(0), fk_info_str(thd, fk_p));
return true;
}
return false;
}
enum class Truncate_result {
OK = 0,
FAILED_BUT_BINLOG,
FAILED_SKIP_BINLOG,
FAILED_OPEN
};
/**
Open and truncate a locked base table.
@param thd Thread context.
@param table_ref Table list element for the table to be truncated.
@param table_def Dictionary table object.
@retval Truncate_result::OK Truncate was successful and statement can be
safely binlogged.
@retval Truncate_result::FAILED_BUT_BINLOG Truncate failed but still
go ahead with binlogging as in case of non
transactional tables partial truncation is
possible.
@retval Truncate_result::FAILED_SKIP_BINLOG Truncate was not
successful hence do not binlog the statement.
@retval Truncate_result::FAILED_OPEN Truncate failed to open table,
do not binlog the statement.
*/
static Truncate_result handler_truncate_base(THD *thd, Table_ref *table_ref,
dd::Table *table_def) {
DBUG_TRACE;
assert(table_def != nullptr);
/*
Can't recreate, the engine must mechanically delete all rows
in the table. Use open_and_lock_tables() to open a write cursor.
*/
/* We don't need to load triggers. */
assert(table_ref->trg_event_map == 0);
/*
Our metadata lock guarantees that no transaction is reading
or writing into the table. Yet, to open a write cursor we need
a thr_lock lock. Allow to open base tables only.
*/
table_ref->required_type = dd::enum_table_type::BASE_TABLE;
/*
Ignore pending FLUSH TABLES since we don't want to release
the MDL lock taken above and otherwise there is no way to
wait for FLUSH TABLES in deadlock-free fashion.
*/
uint flags = MYSQL_OPEN_IGNORE_FLUSH;
/*
Even though we have an MDL lock on the table here, we don't
pass MYSQL_OPEN_HAS_MDL_LOCK to open_and_lock_tables
since to truncate a MERGE table, we must open and lock
merge children, and on those we don't have an MDL lock.
Thus clear the ticket to satisfy MDL asserts.
*/
table_ref->mdl_request.ticket = nullptr;
/* Open the table as it will handle some required preparations. */
if (open_and_lock_tables(thd, table_ref, flags))
return Truncate_result::FAILED_OPEN;
/*
Remove all TABLE/handler instances except the one to be used for
handler::ha_truncate() call. This is necessary for InnoDB to be
able to correctly handle truncate as atomic drop and re-create
internally. If we under LOCK TABLES the caller will re-open tables
as necessary later.
*/
close_all_tables_for_name(thd, table_ref->table->s, false, table_ref->table);
int error = table_ref->table->file->ha_truncate(table_def);
if (error) {
table_ref->table->file->print_error(error, MYF(0));
/*
If truncate method is not implemented then we don't binlog the
statement. If truncation has failed in a transactional engine then also we
do not binlog the statement. Only in non transactional engine we binlog
in spite of errors.
*/
if (error == HA_ERR_WRONG_COMMAND ||
table_ref->table->file->has_transactions())
return Truncate_result::FAILED_SKIP_BINLOG;
else
return Truncate_result::FAILED_BUT_BINLOG;
} else if ((table_ref->table->file->ht->flags & HTON_SUPPORTS_ATOMIC_DDL)) {
if (thd->dd_client()->update(table_def)) {
/* Statement rollback will revert effect of handler::truncate() as well.
*/
return Truncate_result::FAILED_SKIP_BINLOG;
}
}
return Truncate_result::OK;
}
/**
Open and truncate a locked temporary table.
@param thd Thread context.
@param table_ref Table list element for the table to be truncated.
@retval Truncate_result::OK Truncate was successful and statement can be
safely binlogged.
@retval Truncate_result::FAILED_BUT_BINLOG Truncate failed but still
go ahead with binlogging as in case of non
transactional tables partial truncation is
possible.
@retval Truncate_result::FAILED_SKIP_BINLOG Truncate was not successful hence
do not binlog the statement.
@retval Truncate_result::FAILED_OPEN Truncate failed to open table, do not
binlog the statement.
*/
static Truncate_result handler_truncate_temporary(THD *thd,
Table_ref *table_ref) {
DBUG_TRACE;
/*
Can't recreate, the engine must mechanically delete all rows
in the table. Use open_and_lock_tables() to open a write cursor.
*/
/* Open the table as it will handle some required preparations. */
if (open_and_lock_tables(thd, table_ref, 0))
return Truncate_result::FAILED_OPEN;
int error =
table_ref->table->file->ha_truncate(table_ref->table->s->tmp_table_def);
if (error) {
table_ref->table->file->print_error(error, MYF(0));
/*
If truncate method is not implemented then we don't binlog the
statement. If truncation has failed in a transactional engine then also we
donot binlog the statement. Only in non transactional engine we binlog
in spite of errors.
*/
if (error == HA_ERR_WRONG_COMMAND ||
table_ref->table->file->has_transactions())
return Truncate_result::FAILED_SKIP_BINLOG;
else
return Truncate_result::FAILED_BUT_BINLOG;
}
return Truncate_result::OK;
}
/*
Handle locking a base table for truncate.
@param[in] thd Thread context.
@param[in] table_ref Table list element for the table to
be truncated.
@retval false Success.
@retval true Error.
*/
bool Sql_cmd_truncate_table::lock_table(THD *thd, Table_ref *table_ref) {
TABLE *table = nullptr;
DBUG_TRACE;
/* Lock types are set in the parser. */
assert(table_ref->lock_descriptor().type == TL_WRITE);
/* The handler truncate protocol dictates a exclusive lock. */
assert(table_ref->mdl_request.type == MDL_EXCLUSIVE);
/*
Before doing anything else, acquire a metadata lock on the table,
or ensure we have one. We don't use open_and_lock_tables()
right away because we want to be able to truncate (and recreate)
corrupted tables, those that we can't fully open.
MySQL manual documents that TRUNCATE can be used to repair a
damaged table, i.e. a table that can not be fully "opened".
In particular MySQL manual says: As long as the table format
file tbl_name.frm is valid, the table can be re-created as
an empty table with TRUNCATE TABLE, even if the data or index
files have become corrupted.
*/
if (thd->locked_tables_mode) {
if (!(table = find_table_for_mdl_upgrade(thd, table_ref->db,
table_ref->table_name, false)))
return true;
if (acquire_shared_backup_lock(thd, thd->variables.lock_wait_timeout))
return true;
table_ref->mdl_request.ticket = table->mdl_ticket;
/*
A storage engine can recreate or truncate the table only if there
are no references to it from anywhere, i.e. no cached TABLE in the
table cache.
*/
DEBUG_SYNC(thd, "upgrade_lock_for_truncate");
/* To remove the table from the cache we need an exclusive lock. */
if (wait_while_table_is_used(thd, table, HA_EXTRA_FORCE_REOPEN))
return true;
m_ticket_downgrade = table->mdl_ticket;
/* Close if table is going to be recreated. */
if (table->s->db_type()->flags & HTON_CAN_RECREATE)
close_all_tables_for_name(thd, table->s, false, nullptr);
return false;
} // if (thd->locked_tables_mode)
assert(!thd->locked_tables_mode);
/* Acquire an exclusive lock. */
assert(table_ref->next_global == nullptr);
if (lock_table_names(thd, table_ref, nullptr,
thd->variables.lock_wait_timeout, 0))
return true;
/* Table is already locked exclusively. Remove cached instances. */
tdc_remove_table(thd, TDC_RT_REMOVE_ALL, table_ref->db, table_ref->table_name,
false);
return false;
}
/**
Completes transaction by attempting to binlog and commit if
truncate has been successful so far. Rolls back if truncate has
already failed, or if binlogging or commit fails.
*/
void Sql_cmd_truncate_table::end_transaction(THD *thd, bool binlog_stmt,
bool binlog_is_trans) {
if (binlog_stmt) {
int ble = write_bin_log(thd, !m_error, thd->query().str,
thd->query().length, binlog_is_trans);
m_error |= (ble != 0);
}
if (!m_error)
m_error = (trans_commit_stmt(thd) || trans_commit_implicit(thd));
if (m_error) {
trans_rollback_stmt(thd);
/*
Full rollback in case we have THD::transaction_rollback_request
and to synchronize DD state in cache and on disk (as statement
rollback doesn't clear DD cache of modified uncommitted objects).
*/
trans_rollback(thd);
}
}
/**
Performs cleanup actions after truncate of a normal (non-temporary)
table. Calls post_ddl hook, reopens locked tables in locked_tables
mode and possibly downgrades a temporarily upgraded MDL.
*/
void Sql_cmd_truncate_table::cleanup_base(THD *thd, const handlerton *hton) {
if (hton != nullptr && (hton->flags & HTON_SUPPORTS_ATOMIC_DDL) &&
hton->post_ddl)
hton->post_ddl(thd);
if (thd->locked_tables_mode && thd->locked_tables_list.reopen_tables(thd))
thd->locked_tables_list.unlink_all_closed_tables(thd, nullptr, 0);
/*
A locked table ticket was upgraded to a exclusive lock. After the
the query has been written to the binary log, downgrade the lock
to a shared one.
*/
if (m_ticket_downgrade) {
m_ticket_downgrade->downgrade_lock(MDL_SHARED_NO_READ_WRITE);
m_ticket_downgrade = nullptr; // For possible re-execution
}
}
/**
Reopens a temporary table after truncate if supported.
Deletes table and flags error if unuccessful.
*/
void Sql_cmd_truncate_table::cleanup_temporary(THD *thd, handlerton *hton,
const Table_ref &table_ref,
Up_table *tdef_holder_ptr,
const std::string &saved_path) {
assert(m_ticket_downgrade == nullptr);
if ((hton->flags & HTON_CAN_RECREATE) == 0 || !(*tdef_holder_ptr)) {
// For the non-recreate case, or if we bailed before closing the table
// (e.g. if thd->decide_logging_format() returns true)
return;
}
/* Temporary table was closed and needs to be reopened. */
assert(*tdef_holder_ptr);
assert(saved_path.length() > 0);
TABLE *new_table =
open_table_uncached(thd, saved_path.c_str(), table_ref.db,
table_ref.table_name, true, true, **tdef_holder_ptr);
if (new_table == nullptr) {
// Not checking return value since we are cleaning up after a
// failed open
rm_temporary_table(thd, hton, saved_path.c_str(), tdef_holder_ptr->get());
m_error = true;
return;
}
assert(new_table != nullptr);
// Transfer ownership of dd::Table object to the new
// TABLE_SHARE. tdef_holder_ptr could either be the old or the new
// table definition at this point.
new_table->s->tmp_table_def = tdef_holder_ptr->release();
thd->thread_specific_used = true;
}
/**
Optimized delete of all rows by doing a full generate of the base
(non-temporary) table.
@remark Will work even if the .MYI and .MYD files are destroyed.
In other words, it works as long as the .FRM is intact and
the engine supports re-create.
@param thd Thread context.
@param table_ref Table list element for the table to be truncated.
*/
void Sql_cmd_truncate_table::truncate_base(THD *thd, Table_ref *table_ref) {
DBUG_TRACE;
assert(is_temporary_table(table_ref) == false);
m_error = true;
bool binlog_stmt = false;
bool binlog_is_trans = false;
handlerton *hton = nullptr;
assert((!table_ref->table) || (table_ref->table && table_ref->table->s));
assert(m_ticket_downgrade == nullptr);
/*
Truncate is allowed for performance schema tables in both read_only and
super_read_only mode.
*/
if (is_perfschema_db(table_ref->db)) thd->set_skip_readonly_check();
dd::Schema_MDL_locker mdl_locker(thd);
dd::cache::Dictionary_client::Auto_releaser releaser(thd->dd_client());
// Actions needed to cleanup before leaving scope.
auto cleanup_guard = create_scope_guard([&]() {
end_transaction(thd, binlog_stmt, binlog_is_trans);
cleanup_base(thd, hton);
});
if (mdl_locker.ensure_locked(table_ref->db)) return;
if (lock_table(thd, table_ref)) return;
Table_ddl_hton_notification_guard notification_guard{
thd, &table_ref->mdl_request.key, ha_ddl_type::HA_TRUNCATE_DDL};
if (notification_guard.notify()) return;
dd::Table *table_def = nullptr;
if (thd->dd_client()->acquire_for_modification(
table_ref->db, table_ref->table_name, &table_def)) {
return;
}
if (table_def == nullptr ||
table_def->hidden() == dd::Abstract_table::HT_HIDDEN_SE) {
my_error(ER_NO_SUCH_TABLE, MYF(0), table_ref->db, table_ref->table_name);
return;
}
assert(table_def != nullptr);
if (table_def->options().exists("secondary_engine")) {
LEX_CSTRING secondary_engine;
table_def->options().get("secondary_engine", &secondary_engine,
thd->mem_root);
DBUG_EXECUTE_IF("simulate_error_in_truncate_ddl", {
my_error(ER_SECONDARY_ENGINE, MYF(0), "Simulated truncate ddl error");
return;
});
if (!ha_secondary_engine_supports_ddl(thd, secondary_engine)) {
my_error(ER_SECONDARY_ENGINE_DDL, MYF(0));
return;
}
}
if (dd::table_storage_engine(thd, table_def, &hton)) {
return;
}
assert(hton != nullptr);
/*
Check if table can't be truncated because there is a foreign key
on some other table which references it.
*/
if (!(thd->variables.option_bits & OPTION_NO_FOREIGN_KEY_CHECKS)) {
if (fk_truncate_illegal_if_parent(thd, table_ref, table_def)) {
return;
}
}
if (hton->flags & HTON_CAN_RECREATE) {
// Set this before any potential error returns
binlog_is_trans = (hton->flags & HTON_SUPPORTS_ATOMIC_DDL);
if (mysql_event_tracking_table_access_notify(thd, table_ref) != 0) {
return;
}
/*
The storage engine can truncate the table by creating an
empty table with the same structure.
*/
HA_CREATE_INFO create_info;
// Create a path to the table, but without a extension
char path[FN_REFLEN + 1];
build_table_filename(path, sizeof(path) - 1, table_ref->db,
table_ref->table_name, "", 0);
// Attempt to reconstruct the table
if (ha_create_table(thd, path, table_ref->db, table_ref->table_name,
&create_info, true, false, table_def) != 0) {
return;
}
// Binlog only if truncate-by-recreate succeeds.
m_error = false;
binlog_stmt = true;
return;
} // hton->flags & HTON_CAN_RECREATE
assert((hton->flags & HTON_CAN_RECREATE) == false);
/*
The engine does not support truncate-by-recreate.
Attempt to use the handler truncate method.
EVENT_TRACKING_TABLE_ACCESS_READ audit event is generated when opening
tables using open_tables function.
*/
const Truncate_result tr = handler_truncate_base(thd, table_ref, table_def);
switch (tr) {
/*
All effects of a TRUNCATE TABLE operation are committed even if
truncation fails in the case of non transactional tables. Thus, the
query must be written to the binary log for such tables.
The exceptions are failure to open table or unimplemented truncate
method.
*/
case Truncate_result::OK:
m_error = false;
[[fallthrough]];
case Truncate_result::FAILED_BUT_BINLOG:
binlog_stmt = true;
binlog_is_trans = table_ref->table->file->has_transactions();
[[fallthrough]];
case Truncate_result::FAILED_SKIP_BINLOG:
/*
Call to handler_truncate() might have updated table definition
in the data-dictionary, let us remove TABLE_SHARE from the TDC.
This needs to be done even in case of failure so InnoDB SE
properly invalidates its internal cache.
*/
close_all_tables_for_name(thd, table_ref->table->s, false, nullptr);
break;
case Truncate_result::FAILED_OPEN:
// Nothing to do here
break;
default:
assert(false);
};
assert(m_error || !thd->get_stmt_da()->is_set());
}
/**
Optimized delete of all rows by doing a full generate of the temporary table.
@remark Will work even if the .MYI and .MYD files are destroyed.
In other words, it works as long as the .FRM is intact and
the engine supports re-create.
@param thd Thread context.
@param table_ref Table list element for the table to be truncated.
*/
void Sql_cmd_truncate_table::truncate_temporary(THD *thd,
Table_ref *table_ref) {
DBUG_TRACE;
assert(is_temporary_table(table_ref));
/* Initialize, or reinitialize in case of reexecution (SP). */
m_error = true;
bool binlog_stmt = false;
bool binlog_is_trans = false;
handlerton *hton = nullptr;
Up_table tdef_holder;
std::string saved_path;
m_ticket_downgrade = nullptr;
assert((!table_ref->table) || (table_ref->table && table_ref->table->s));
// Actions needed to cleanup before leaving scope.
auto cleanup_guard = create_scope_guard([&]() {
end_transaction(thd, binlog_stmt, binlog_is_trans);
cleanup_temporary(thd, hton, *table_ref, &tdef_holder, saved_path);
});
TABLE *tmp_table = table_ref->table;
hton = tmp_table->s->db_type();
/*
THD::decide_logging_format has not yet been called and may
not be called at all depending on the engine, so call it here.
*/
if (thd->decide_logging_format(table_ref) != 0) return;
/* Note that a temporary table cannot be partitioned. */
if (hton->flags & HTON_CAN_RECREATE) {
tmp_table->file->info(HA_STATUS_AUTO | HA_STATUS_NO_LOCK);
/*
If LOCK TABLES list is not empty and contains this table
then unlock the table and remove it from this list.
*/
mysql_lock_remove(thd, thd->lock, tmp_table);
/*
Transfer ownership of dd::Table object and save path so
we can reopen table after freeing the TABLE_SHARE.
*/
tdef_holder.reset(tmp_table->s->tmp_table_def);
tmp_table->s->tmp_table_def = nullptr;
saved_path.assign(tmp_table->s->path.str, tmp_table->s->path.length);
/* Save normalized path so we can free TABLE_SHARE. */
std::string saved_norm_path{tmp_table->s->normalized_path.str,
tmp_table->s->normalized_path.length};
/* Free TABLE and TABLE_SHARE but don't delete table. */
close_temporary_table(thd, tmp_table, true, false);
/*
We must use normalized_path since for temporary tables it
differs from what dd_recreate_table() would generate based
on table and schema names.
*/
HA_CREATE_INFO create_info;
// Create a clone of the tdef which can be manipulated by ha_create_table
Up_table tdef_clone = Up_table{tdef_holder->clone()};
m_error = ha_create_table(thd, saved_norm_path.c_str(), table_ref->db,
table_ref->table_name, &create_info, true, true,
tdef_clone.get());
assert(
!thd->get_transaction()->cannot_safely_rollback(Transaction_ctx::STMT));
binlog_is_trans = (hton->flags & HTON_SUPPORTS_ATOMIC_DDL);
if (!m_error || (hton->flags & HTON_SUPPORTS_ATOMIC_DDL) == 0) {
// If create succeeded, or the SE does not support atomic ddl,
// we need to replace the table def
tdef_holder.reset(tdef_clone.release());
}
if (m_error) {
return;
}
/* Only binlog if truncate-by-recreate succeeds. */
/* In RBR, the statement is not binlogged if the table is temporary. */
binlog_stmt = !thd->is_current_stmt_binlog_format_row();
return;
} // hton->flags & HTON_CAN_RECREATE
assert((hton->flags & HTON_CAN_RECREATE) == false);
/*
The engine does not support truncate-by-recreate. Open the
table and invoke the handler truncate. In such a manner this
can in fact open several tables if it's a temporary MyISAMMRG
table.
*/
const Truncate_result tr = handler_truncate_temporary(thd, table_ref);
if (tr != Truncate_result::OK) {
return;
}
m_error = false;
/* Only binlog if truncate succeeds. */
/* In RBR, the statement is not binlogged if the table is temporary. */
binlog_stmt = !thd->is_current_stmt_binlog_format_row();
binlog_is_trans = table_ref->table->file->has_transactions();
}
/**
Execute a TRUNCATE statement at runtime.
@param thd The current thread.
@return false on success.
*/
bool Sql_cmd_truncate_table::execute(THD *thd) {
DBUG_TRACE;
Table_ref *first_table = thd->lex->query_block->get_table_list();
if (check_one_table_access(thd, DROP_ACL, first_table)) return true;
if (is_temporary_table(first_table))
truncate_temporary(thd, first_table);
else
truncate_base(thd, first_table);
if (!m_error) my_ok(thd);
return m_error;
}