summaryrefslogtreecommitdiff
path: root/storage/innobase/include/dict0dict.ic
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/include/dict0dict.ic')
-rw-r--r--storage/innobase/include/dict0dict.ic22
1 files changed, 0 insertions, 22 deletions
diff --git a/storage/innobase/include/dict0dict.ic b/storage/innobase/include/dict0dict.ic
index b6d15f28a69..e24085ecefe 100644
--- a/storage/innobase/include/dict0dict.ic
+++ b/storage/innobase/include/dict0dict.ic
@@ -705,28 +705,6 @@ dict_tf_to_sys_tables_type(
return(type);
}
-/*********************************************************************//**
-Returns true if the particular FTS index in the table is still syncing
-in the background, false otherwise.
-@param [in] table Table containing FTS index
-@return True if sync of fts index is still going in the background */
-UNIV_INLINE
-bool
-dict_fts_index_syncing(
- dict_table_t* table)
-{
- dict_index_t* index;
-
- for (index = dict_table_get_first_index(table);
- index != NULL;
- index = dict_table_get_next_index(index)) {
- if (index->index_fts_syncing) {
- return(true);
- }
- }
- return(false);
-}
-
/********************************************************************//**
Gets the number of fields in the internal representation of an index,
including fields added by the dictionary system.