mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-04-19 21:02:17 +03:00
33 lines
746 B
C++
33 lines
746 B
C++
//
|
|
// Copyright (C) 2018 Codership Oy <info@codership.com>
|
|
//
|
|
|
|
// Forward declarations
|
|
namespace wsrep
|
|
{
|
|
class client_state;
|
|
class mock_server_context;
|
|
}
|
|
|
|
#include "wsrep/transaction.hpp"
|
|
#include "wsrep/provider.hpp"
|
|
|
|
//
|
|
// Utility functions
|
|
//
|
|
namespace wsrep_test
|
|
{
|
|
|
|
// Simple BF abort method to BF abort unordered transasctions
|
|
void bf_abort_unordered(wsrep::client_state& cc);
|
|
|
|
// Simple BF abort method to BF abort unordered transasctions
|
|
void bf_abort_ordered(wsrep::client_state& cc);
|
|
|
|
// BF abort method to abort transactions via provider
|
|
void bf_abort_provider(wsrep::mock_server_context& sc,
|
|
const wsrep::transaction& tc,
|
|
wsrep::seqno bf_seqno);
|
|
|
|
}
|