diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2019-12-17 16:25:15 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2020-04-03 13:01:21 +0400 |
commit | 7a947614fbf8b925ae3df70ec8df80c745eafd4c (patch) | |
tree | d462b7218559c2e7855a6019ffc382f003f1f889 /sql/sql_admin.cc | |
parent | 06fae75859821fe36f68eb2d77f007f014143282 (diff) | |
download | mariadb-git-7a947614fbf8b925ae3df70ec8df80c745eafd4c.tar.gz |
Split tdc_remove_table()
TDC_RT_REMOVE_ALL -> tdc_remove_table(). Some occurrences replaced with
TDC_element::flush() (whenver TABLE_SHARE is available).
TDC_RT_REMOVE_NOT_OWN[_KEEP_SHARE] -> TDC_element::flush(). These modes
assume that current thread owns TABLE_SHARE reference, which means we can
avoid hash lookup and flush unused TABLE instances directly.
TDC_RT_REMOVE_UNUSED -> TDC_element::flush_unused(). Only [ab]used by
mysql_admin_table() currently. Should be removed eventually.
Part of MDEV-17882 - Cleanup refresh version
Diffstat (limited to 'sql/sql_admin.cc')
-rw-r--r-- | sql/sql_admin.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/sql_admin.cc b/sql/sql_admin.cc index cdec2c08e5c..ea455e43ffc 100644 --- a/sql/sql_admin.cc +++ b/sql/sql_admin.cc @@ -1156,8 +1156,7 @@ send_result_message: } else if (open_for_modify || fatal_error) { - tdc_remove_table(thd, TDC_RT_REMOVE_UNUSED, - table->db.str, table->table_name.str); + table->table->s->tdc->flush_unused(true); /* May be something modified. Consequently, we have to invalidate the query cache. |