1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-06-14 15:02:27 +03:00

Renamed client_context to client_state.

This commit is contained in:
Teemu Ollakka
2018-06-17 10:00:13 +03:00
parent 97ee96987e
commit dd28b173ab
33 changed files with 518 additions and 518 deletions

View File

@ -3,18 +3,18 @@
//
#include "test_utils.hpp"
#include "wsrep/client_context.hpp"
#include "wsrep/client_state.hpp"
#include "mock_server_context.hpp"
// Simple BF abort method to BF abort unordered transasctions
void wsrep_test::bf_abort_unordered(wsrep::client_context& cc)
void wsrep_test::bf_abort_unordered(wsrep::client_state& cc)
{
assert(cc.transaction().ordered() == false);
cc.bf_abort(wsrep::seqno(1));
}
void wsrep_test::bf_abort_ordered(wsrep::client_context& cc)
void wsrep_test::bf_abort_ordered(wsrep::client_state& cc)
{
assert(cc.transaction().ordered());
cc.bf_abort(wsrep::seqno(0));