diff options
author | Monty <monty@mariadb.org> | 2020-05-22 18:02:24 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-05-23 14:58:33 +0300 |
commit | be647ff14d6196af825f05020acee8f18af4773d (patch) | |
tree | df9a139f33c72f943671272f4c99ab8e23a4f093 /sql/tztime.cc | |
parent | 6462af1c2e2cddf3a96818dc7884e187d8ba7f24 (diff) | |
download | mariadb-git-be647ff14d6196af825f05020acee8f18af4773d.tar.gz |
Fixed deadlock with LOCK TABLES and ALTER TABLE
MDEV-21398 Deadlock (server hang) or assertion failure in
Diagnostics_area::set_error_status upon ALTER under lock
This failure could only happen if one locked the same table
multiple times and then did an ALTER TABLE on the table.
Major change is to change all instances of
table->m_needs_reopen= true;
to
table->mark_table_for_reopen();
The main fix for the problem was to ensure that we mark all
instances of the table in the locked_table_list and when we
reopen the tables, we first close all tables before reopening
and locking them.
Other things:
- Don't call thd->locked_tables_list.reopen_tables if there
are no tables marked for reopen. (performance)
Diffstat (limited to 'sql/tztime.cc')
-rw-r--r-- | sql/tztime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/tztime.cc b/sql/tztime.cc index 941530b9656..f58801bf4b7 100644 --- a/sql/tztime.cc +++ b/sql/tztime.cc @@ -1699,7 +1699,7 @@ my_tz_init(THD *org_thd, const char *default_tzname, my_bool bootstrap) { tl->table->use_all_columns(); /* Force close at the end of the function to free memory. */ - tl->table->m_needs_reopen= TRUE; + tl->table->mark_table_for_reopen(); } /* |