1
0
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:
Alexey Yurchenko
2021-11-29 20:25:18 +02:00
parent bef2c93a6d
commit 31a35bf573
4 changed files with 21 additions and 28 deletions

View File

@ -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_);