summaryrefslogtreecommitdiff
path: root/storage/innobase/row/row0quiesce.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/row/row0quiesce.cc')
-rw-r--r--storage/innobase/row/row0quiesce.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/row/row0quiesce.cc b/storage/innobase/row/row0quiesce.cc
index 2bc996091b0..54e5ca3c134 100644
--- a/storage/innobase/row/row0quiesce.cc
+++ b/storage/innobase/row/row0quiesce.cc
@@ -486,7 +486,7 @@ row_quiesce_table_has_fts_index(
{
bool exists = false;
- dict_mutex_enter_for_mysql();
+ dict_sys.mutex_lock();
for (const dict_index_t* index = UT_LIST_GET_FIRST(table->indexes);
index != 0;
@@ -498,7 +498,7 @@ row_quiesce_table_has_fts_index(
}
}
- dict_mutex_exit_for_mysql();
+ dict_sys.mutex_unlock();
return(exists);
}