summaryrefslogtreecommitdiff
path: root/sql/log.h
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2020-02-14 16:25:02 +0100
committerSergei Golubchik <serg@mariadb.org>2020-03-10 19:24:22 +0100
commit22b6d8487aa08123c30092c1f1df48e31c79eff3 (patch)
tree86ab13af5b6df878f933404f260c60eb04c5d90a /sql/log.h
parent7c58e97bf6f80a251046c5b3e7bce826fe058bd6 (diff)
downloadmariadb-git-22b6d8487aa08123c30092c1f1df48e31c79eff3.tar.gz
perfschema file instrumentation related changes
Diffstat (limited to 'sql/log.h')
-rw-r--r--sql/log.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sql/log.h b/sql/log.h
index 52e4d31ddd9..8ac5de28053 100644
--- a/sql/log.h
+++ b/sql/log.h
@@ -420,9 +420,9 @@ class MYSQL_BIN_LOG: public TC_LOG, private MYSQL_LOG
/** The instrumentation key to use for @ COND_bin_log_updated */
PSI_cond_key m_key_bin_log_update;
/** The instrumentation key to use for opening the log file. */
- PSI_file_key m_key_file_log;
+ PSI_file_key m_key_file_log, m_key_file_log_cache;
/** The instrumentation key to use for opening the log index file. */
- PSI_file_key m_key_file_log_index;
+ PSI_file_key m_key_file_log_index, m_key_file_log_index_cache;
PSI_cond_key m_key_COND_queue_busy;
/** The instrumentation key to use for LOCK_binlog_end_pos. */
@@ -674,7 +674,9 @@ public:
PSI_cond_key key_relay_log_update,
PSI_cond_key key_bin_log_update,
PSI_file_key key_file_log,
+ PSI_file_key key_file_log_cache,
PSI_file_key key_file_log_index,
+ PSI_file_key key_file_log_index_cache,
PSI_cond_key key_COND_queue_busy,
PSI_mutex_key key_LOCK_binlog_end_pos)
{
@@ -682,7 +684,9 @@ public:
m_key_relay_log_update= key_relay_log_update;
m_key_bin_log_update= key_bin_log_update;
m_key_file_log= key_file_log;
+ m_key_file_log_cache= key_file_log_cache;
m_key_file_log_index= key_file_log_index;
+ m_key_file_log_index_cache= key_file_log_index_cache;
m_key_COND_queue_busy= key_COND_queue_busy;
m_key_LOCK_binlog_end_pos= key_LOCK_binlog_end_pos;
}