summaryrefslogtreecommitdiff
path: root/storage/innobase/handler
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-12-16 17:24:48 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2021-07-26 08:54:15 +0300
commit2c27ea3690abcc33a449b6ca82ee90ceec7a73f1 (patch)
treec9daeb1d1a0d8875b924ae5244bf7ac7cb558169 /storage/innobase/handler
parente5246ebbc3f84e4fe288c953e660558d183e92aa (diff)
downloadmariadb-git-2c27ea3690abcc33a449b6ca82ee90ceec7a73f1.tar.gz
WIP: Append to ib_logfile0
FIXME: This would actually overwrite the ib_logfile0 header, because log_sys.log.fd_offset is incorrectly starting from 0.
Diffstat (limited to 'storage/innobase/handler')
-rw-r--r--storage/innobase/handler/ha_innodb.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc
index c743df09bad..ddeae5bd051 100644
--- a/storage/innobase/handler/ha_innodb.cc
+++ b/storage/innobase/handler/ha_innodb.cc
@@ -514,6 +514,7 @@ mysql_pfs_key_t fts_pll_tokenize_mutex_key;
mysql_pfs_key_t ibuf_bitmap_mutex_key;
mysql_pfs_key_t ibuf_mutex_key;
mysql_pfs_key_t ibuf_pessimistic_insert_mutex_key;
+mysql_pfs_key_t log_sys_file_mutex_key;
mysql_pfs_key_t log_sys_mutex_key;
mysql_pfs_key_t log_cmdq_mutex_key;
mysql_pfs_key_t log_flush_order_mutex_key;
@@ -558,6 +559,7 @@ static PSI_mutex_info all_innodb_mutexes[] = {
PSI_KEY(ibuf_mutex),
PSI_KEY(ibuf_pessimistic_insert_mutex),
PSI_KEY(index_online_log),
+ PSI_KEY(log_sys_file_mutex),
PSI_KEY(log_sys_mutex),
PSI_KEY(page_zip_stat_per_index_mutex),
PSI_KEY(purge_sys_pq_mutex),