summaryrefslogtreecommitdiff
path: root/sql/handler.cc
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/handler.cc
parent9ea133fb3be4c46741e059ab78118f75afe791a1 (diff)
downloadmariadb-git-14c767ca48d6a86a3d495476bb6b5999036e00af.tar.gz
fix typo: binlog_annotate_rows_events -> binlog_annotate_row_events
Diffstat (limited to 'sql/handler.cc')
-rw-r--r--sql/handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.cc b/sql/handler.cc
index 905668114dd..a9f5b6f20b6 100644
--- a/sql/handler.cc
+++ b/sql/handler.cc
@@ -4721,7 +4721,7 @@ static bool check_table_binlog_row_based(THD *thd, TABLE *table)
/** @brief
Write table maps for all (manually or automatically) locked tables
- to the binary log. Also, if binlog_annotate_rows_events is ON,
+ to the binary log. Also, if binlog_annotate_row_events is ON,
write Annotate_rows event before the first table map.
SYNOPSIS
@@ -4759,7 +4759,7 @@ static int write_locked_table_maps(THD *thd)
locks[0]= thd->extra_lock;
locks[1]= thd->lock;
locks[2]= thd->locked_tables;
- my_bool with_annotate= thd->variables.binlog_annotate_rows_events &&
+ my_bool with_annotate= thd->variables.binlog_annotate_row_events &&
thd->query() && thd->query_length();
for (uint i= 0 ; i < sizeof(locks)/sizeof(*locks) ; ++i )