diff options
author | Luis Soares <luis.soares@oracle.com> | 2011-09-08 11:10:26 +0100 |
---|---|---|
committer | Luis Soares <luis.soares@oracle.com> | 2011-09-08 11:10:26 +0100 |
commit | c77928b47302f8a41b7fc9b69782ae16b8c911d8 (patch) | |
tree | f752c15f1bca9d1a2cfe8b8fbb7de6d4ca8798aa /plugin/semisync | |
parent | 74e7990a967e09012d0463b97a01a3050a92c2b3 (diff) | |
download | mariadb-git-c77928b47302f8a41b7fc9b69782ae16b8c911d8.tar.gz |
BUG#12818224: 61921: WRITETRAXINBINLOG SHOULD BE WRITETRANXINBINLOG
IN SEMISYNC_MASTER.CC
Fixing typo: writeTraxInBinlog() => writeTranxInBinlog() .
Additionally, fixed identation.
Diffstat (limited to 'plugin/semisync')
-rw-r--r-- | plugin/semisync/semisync_master.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugin/semisync/semisync_master.cc b/plugin/semisync/semisync_master.cc index 1f92c60913e..1be876d0f1b 100644 --- a/plugin/semisync/semisync_master.cc +++ b/plugin/semisync/semisync_master.cc @@ -312,18 +312,18 @@ int ActiveTranx::clear_active_tranx_nodes(const char *log_file_name, * The most important functions during semi-syn replication listed: * * Master: - * . reportReplyBinlog(): called by the binlog dump thread when it receives - * the slave's status information. - * . updateSyncHeader(): based on transaction waiting information, decide - * whether to request the slave to reply. - * . writeTraxInBinlog(): called by the transaction thread when it finishes - * writing all transaction events in binlog. - * . commitTrx(): transaction thread wait for the slave reply. + * . reportReplyBinlog(): called by the binlog dump thread when it receives + * the slave's status information. + * . updateSyncHeader(): based on transaction waiting information, decide + * whether to request the slave to reply. + * . writeTranxInBinlog(): called by the transaction thread when it finishes + * writing all transaction events in binlog. + * . commitTrx(): transaction thread wait for the slave reply. * * Slave: * . slaveReadSyncHeader(): read the semi-sync header from the master, get the - * sync status and get the payload for events. - * . slaveReply(): reply to the master about the replication progress. + * sync status and get the payload for events. + * . slaveReply(): reply to the master about the replication progress. * ******************************************************************************/ |