diff options
author | svoj@mysql.com/june.mysql.com <> | 2008-02-27 21:46:06 +0400 |
---|---|---|
committer | svoj@mysql.com/june.mysql.com <> | 2008-02-27 21:46:06 +0400 |
commit | cf50a67cca8e2cb62d7d740c0ad25b1a6fa55165 (patch) | |
tree | f13c97ab1c6bbf24dc3fdd2734cd5b7fc1157126 /sql/rpl_rli.h | |
parent | 6c6afd7130e7ccf17622caa5faee4e67ae9e309d (diff) | |
download | mariadb-git-cf50a67cca8e2cb62d7d740c0ad25b1a6fa55165.tar.gz |
BUG#13861 - START SLAVE UNTIL may stop 1 evnt too late if
log-slave-updates and circul repl
After merge fixes.
Diffstat (limited to 'sql/rpl_rli.h')
-rw-r--r-- | sql/rpl_rli.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/rpl_rli.h b/sql/rpl_rli.h index 36daffae1af..e13ea93842c 100644 --- a/sql/rpl_rli.h +++ b/sql/rpl_rli.h @@ -296,7 +296,7 @@ public: void close_temporary_tables(); /* Check if UNTIL condition is satisfied. See slave.cc for more. */ - bool is_until_satisfied(); + bool is_until_satisfied(my_off_t master_beg_pos); inline ulonglong until_pos() { return ((until_condition == UNTIL_MASTER_POS) ? group_master_log_pos : |