diff options
author | Konstantin Osipov <kostja@sun.com> | 2010-06-10 15:43:32 +0400 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2010-06-10 15:43:32 +0400 |
commit | 41d95c504976746e4d117a4f97e18004f36eb70e (patch) | |
tree | 41f4c8d871ed17caa85406b096d767bc51481b0d /sql/sql_base.h | |
parent | df9ab0ffea2eb603179f2bd2abcc66d2c652cdda (diff) | |
download | mariadb-git-41d95c504976746e4d117a4f97e18004f36eb70e.tar.gz |
A pre-requisite for WL#5419 "LOCK_open scalability:
make tdc_refresh_version an
atomic counter".
Backport the trivial changes from mysql-trunk-iplus.
Diffstat (limited to 'sql/sql_base.h')
-rw-r--r-- | sql/sql_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_base.h b/sql/sql_base.h index 928b8339f15..38194f94a37 100644 --- a/sql/sql_base.h +++ b/sql/sql_base.h @@ -233,7 +233,6 @@ bool rename_temporary_table(THD* thd, TABLE *table, const char *new_db, const char *table_name); void mysql_wait_completed_table(ALTER_PARTITION_PARAM_TYPE *lpt, TABLE *my_table); void remove_db_from_cache(const char *db); -void flush_tables(); bool is_equal(const LEX_STRING *a, const LEX_STRING *b); /* Functions to work with system tables. */ @@ -263,6 +262,7 @@ void tdc_remove_table(THD *thd, enum_tdc_remove_table_type remove_type, bool tdc_open_view(THD *thd, TABLE_LIST *table_list, const char *alias, char *cache_key, uint cache_key_length, MEM_ROOT *mem_root, uint flags); +void tdc_flush_unused_tables(); TABLE *find_table_for_mdl_upgrade(TABLE *list, const char *db, const char *table_name, bool no_error); |