mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-30 07:23:07 +03:00
Remove obsolete wsrep::server_state::last_committed_gtid() method
This commit is contained in:
@ -60,6 +60,17 @@ namespace wsrep
|
||||
{
|
||||
return (seqno_ > other.seqno_);
|
||||
}
|
||||
|
||||
bool operator<=(seqno other) const
|
||||
{
|
||||
return !(seqno_ > other.seqno_);
|
||||
}
|
||||
|
||||
bool operator>=(seqno other) const
|
||||
{
|
||||
return !(seqno_ < other.seqno_);
|
||||
}
|
||||
|
||||
bool operator==(seqno other) const
|
||||
{
|
||||
return (seqno_ == other.seqno_);
|
||||
|
Reference in New Issue
Block a user