summaryrefslogtreecommitdiff
path: root/sql/rpl_rli.h
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2011-09-23 12:00:52 +0200
committerSergei Golubchik <sergii@pisem.net>2011-09-23 12:00:52 +0200
commit14c767ca48d6a86a3d495476bb6b5999036e00af (patch)
tree5ea8376823ce1bf61f2f883f03f2c27921ec257a /sql/rpl_rli.h
parent9ea133fb3be4c46741e059ab78118f75afe791a1 (diff)
downloadmariadb-git-14c767ca48d6a86a3d495476bb6b5999036e00af.tar.gz
fix typo: binlog_annotate_rows_events -> binlog_annotate_row_events
Diffstat (limited to 'sql/rpl_rli.h')
-rw-r--r--sql/rpl_rli.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/rpl_rli.h b/sql/rpl_rli.h
index 0ea3c23bfd8..a143f5251af 100644
--- a/sql/rpl_rli.h
+++ b/sql/rpl_rli.h
@@ -425,14 +425,14 @@ public:
/**
Save pointer to Annotate_rows event and switch on the
- binlog_annotate_rows_events for this sql thread.
+ binlog_annotate_row_events for this sql thread.
To be called when sql thread recieves an Annotate_rows event.
*/
inline void set_annotate_event(Annotate_rows_log_event *event)
{
free_annotate_event();
m_annotate_event= event;
- sql_thd->variables.binlog_annotate_rows_events= 1;
+ sql_thd->variables.binlog_annotate_row_events= 1;
}
/**
@@ -446,7 +446,7 @@ public:
/**
Delete saved Annotate_rows event (if any) and switch off the
- binlog_annotate_rows_events for this sql thread.
+ binlog_annotate_row_events for this sql thread.
To be called when sql thread has applied the last (i.e. with
STMT_END_F flag) rbr event.
*/
@@ -454,7 +454,7 @@ public:
{
if (m_annotate_event)
{
- sql_thd->variables.binlog_annotate_rows_events= 0;
+ sql_thd->variables.binlog_annotate_row_events= 0;
delete m_annotate_event;
m_annotate_event= 0;
}