mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-02 05:22:26 +03:00
Interface changes required to store and remove fragments from high
priority context.
This commit is contained in:
@ -26,6 +26,7 @@ void wsrep::mock_high_priority_service::adopt_transaction(
|
||||
}
|
||||
|
||||
int wsrep::mock_high_priority_service::apply_write_set(
|
||||
const wsrep::ws_meta&,
|
||||
const wsrep::const_buffer&)
|
||||
{
|
||||
assert(client_state_->toi_meta().seqno().is_undefined());
|
||||
|
@ -32,9 +32,14 @@ namespace wsrep
|
||||
WSREP_OVERRIDE;
|
||||
|
||||
void adopt_transaction(const wsrep::transaction&) WSREP_OVERRIDE;
|
||||
int apply_write_set(const wsrep::const_buffer&) WSREP_OVERRIDE;
|
||||
int append_fragment(const wsrep::ws_meta&,
|
||||
const wsrep::const_buffer&) WSREP_OVERRIDE
|
||||
int apply_write_set(const wsrep::ws_meta&,
|
||||
const wsrep::const_buffer&) WSREP_OVERRIDE;
|
||||
int append_fragment_and_commit(
|
||||
const wsrep::ws_handle&,
|
||||
const wsrep::ws_meta&,
|
||||
const wsrep::const_buffer&) WSREP_OVERRIDE
|
||||
{ return 0; }
|
||||
int remove_fragments(const wsrep::ws_meta&) WSREP_OVERRIDE
|
||||
{ return 0; }
|
||||
int commit(const wsrep::ws_handle&, const wsrep::ws_meta&)
|
||||
WSREP_OVERRIDE;
|
||||
|
Reference in New Issue
Block a user