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

Client state history, fixed races in server state, logging improv

This commit is contained in:
Teemu Ollakka
2018-06-28 11:56:28 +03:00
parent 203dd2875a
commit a4f5997045
4 changed files with 28 additions and 17 deletions

View File

@ -582,6 +582,7 @@ namespace wsrep
, mode_(mode)
, toi_mode_()
, state_(s_none)
, state_hist_()
, transaction_(*this)
, toi_meta_()
, allow_dirty_reads_()
@ -612,6 +613,7 @@ namespace wsrep
enum mode mode_;
enum mode toi_mode_;
enum state state_;
std::vector<enum state> state_hist_;
wsrep::transaction transaction_;
wsrep::ws_meta toi_meta_;
bool allow_dirty_reads_;