1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-30 07:23:07 +03:00

Implemented client last_written_gtid, sync_wait

This commit is contained in:
Teemu Ollakka
2018-06-30 07:44:09 +03:00
parent 3d2af88428
commit db18e91c42
11 changed files with 138 additions and 12 deletions

View File

@ -208,9 +208,11 @@ namespace wsrep
enum wsrep::provider::status leave_toi(wsrep::client_id)
{ return wsrep::provider::success; }
enum wsrep::provider::status causal_read(int) const WSREP_OVERRIDE
std::pair<wsrep::gtid, enum wsrep::provider::status>
causal_read(int) const WSREP_OVERRIDE
{
return wsrep::provider::success;
return std::make_pair(wsrep::gtid::undefined(),
wsrep::provider::error_not_implemented);
}
enum wsrep::provider::status wait_for_gtid(const wsrep::gtid&,
int) const WSREP_OVERRIDE