summaryrefslogtreecommitdiff
path: root/sql/log_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/log_event.h')
-rw-r--r--sql/log_event.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/log_event.h b/sql/log_event.h
index 45e66fdb266..9409d3895a5 100644
--- a/sql/log_event.h
+++ b/sql/log_event.h
@@ -4873,14 +4873,14 @@ public:
#if defined(MYSQL_SERVER)
static bool binlog_row_logging_function(THD *thd, TABLE *table,
MYSQL_BIN_LOG *bin_log,
- binlog_cache_mngr *cache_mngr,
+ binlog_cache_data *cache_data,
bool is_transactional,
const uchar *before_record
__attribute__((unused)),
const uchar *after_record)
{
DBUG_ASSERT(!table->versioned(VERS_TRX_ID));
- return thd->binlog_write_row(table, bin_log, cache_mngr, is_transactional,
+ return thd->binlog_write_row(table, bin_log, cache_data, is_transactional,
after_record);
}
#endif
@@ -4959,13 +4959,13 @@ public:
#ifdef MYSQL_SERVER
static bool binlog_row_logging_function(THD *thd, TABLE *table,
MYSQL_BIN_LOG *bin_log,
- binlog_cache_mngr *cache_mngr,
+ binlog_cache_data *cache_data,
bool is_transactional,
const uchar *before_record,
const uchar *after_record)
{
DBUG_ASSERT(!table->versioned(VERS_TRX_ID));
- return thd->binlog_update_row(table, bin_log, cache_mngr, is_transactional,
+ return thd->binlog_update_row(table, bin_log, cache_data, is_transactional,
before_record, after_record);
}
#endif
@@ -5050,14 +5050,14 @@ public:
#ifdef MYSQL_SERVER
static bool binlog_row_logging_function(THD *thd, TABLE *table,
MYSQL_BIN_LOG *bin_log,
- binlog_cache_mngr *cache_mngr,
+ binlog_cache_data *cache_data,
bool is_transactional,
const uchar *before_record,
const uchar *after_record
__attribute__((unused)))
{
DBUG_ASSERT(!table->versioned(VERS_TRX_ID));
- return thd->binlog_delete_row(table, bin_log, cache_mngr, is_transactional,
+ return thd->binlog_delete_row(table, bin_log, cache_data, is_transactional,
before_record);
}
#endif