mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-28 20:02:00 +03:00
codership/wsrep-lib#104 Error voting support
- populate and pass real error description buffer to provider in case of applying error - return 0 from server_state::on_apply() if error voting confirmed consistency - remove fragments and rollback after fragment applying failure - always release streaming applier on commit or rollback
This commit is contained in:
@ -48,6 +48,13 @@ namespace wsrep
|
||||
{
|
||||
return undefined_;
|
||||
}
|
||||
bool operator==(const gtid& other) const
|
||||
{
|
||||
return (
|
||||
seqno_ == other.seqno_ &&
|
||||
id_ == other.id_
|
||||
);
|
||||
}
|
||||
private:
|
||||
static const wsrep::gtid undefined_;
|
||||
wsrep::id id_;
|
||||
|
Reference in New Issue
Block a user