summaryrefslogtreecommitdiff
path: root/storage/innobase/row/row0merge.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/row/row0merge.cc')
-rw-r--r--storage/innobase/row/row0merge.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/row/row0merge.cc b/storage/innobase/row/row0merge.cc
index 8fc7ecf75ac..ef832c38b95 100644
--- a/storage/innobase/row/row0merge.cc
+++ b/storage/innobase/row/row0merge.cc
@@ -4511,7 +4511,7 @@ row_merge_create_index(
/*********************************************************************//**
Check if a transaction can use an index. */
-ibool
+bool
row_merge_is_index_usable(
/*======================*/
const trx_t* trx, /*!< in: transaction */
@@ -4520,7 +4520,7 @@ row_merge_is_index_usable(
if (!dict_index_is_clust(index)
&& dict_index_is_online_ddl(index)) {
/* Indexes that are being created are not useable. */
- return(FALSE);
+ return(false);
}
return(!dict_index_is_corrupted(index)