1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-21 12:22:06 +03:00

Clean up last_committed_gtid() which is not used anywhere

This commit is contained in:
Teemu Ollakka
2021-11-29 15:05:04 +02:00
parent 3f79d4390c
commit a921a4f579
3 changed files with 0 additions and 26 deletions

View File

@ -387,16 +387,6 @@ namespace wsrep
*/ */
const wsrep::view& current_view() const { return current_view_; } const wsrep::view& current_view() const { return current_view_; }
/**
* Set last committed GTID.
*/
void last_committed_gtid(const wsrep::gtid&);
/**
* Return the last committed GTID known to be committed
* on server.
*/
wsrep::gtid last_committed_gtid() const;
/** /**
* Wait until all the write sets up to given GTID have been * Wait until all the write sets up to given GTID have been
* committed. * committed.

View File

@ -804,21 +804,6 @@ void wsrep::server_state::initialized()
} }
} }
void wsrep::server_state::last_committed_gtid(const wsrep::gtid& gtid)
{
wsrep::unique_lock<wsrep::mutex> lock(mutex_);
assert(last_committed_gtid_.is_undefined() ||
last_committed_gtid_.seqno() + 1 == gtid.seqno());
last_committed_gtid_ = gtid;
cond_.notify_all();
}
wsrep::gtid wsrep::server_state::last_committed_gtid() const
{
wsrep::unique_lock<wsrep::mutex> lock(mutex_);
return last_committed_gtid_;
}
enum wsrep::provider::status enum wsrep::provider::status
wsrep::server_state::wait_for_gtid(const wsrep::gtid& gtid, int timeout) wsrep::server_state::wait_for_gtid(const wsrep::gtid& gtid, int timeout)
const const

View File

@ -647,7 +647,6 @@ int wsrep::transaction::after_commit()
assert(ret == 0); assert(ret == 0);
state(lock, s_committed); state(lock, s_committed);
// client_state_.server_state().last_committed_gtid(ws_meta.gitd());
debug_log_state("after_commit_leave"); debug_log_state("after_commit_leave");
return ret; return ret;
} }