mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-08-09 13:22:47 +03:00
Pass ws_meta to high priority service apply_toi
This commit is contained in:
@@ -32,7 +32,9 @@ int db::high_priority_service::apply_write_set(const wsrep::const_buffer&)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int db::high_priority_service::apply_toi(const wsrep::const_buffer&)
|
||||
int db::high_priority_service::apply_toi(
|
||||
const wsrep::ws_meta&,
|
||||
const wsrep::const_buffer&)
|
||||
{
|
||||
throw wsrep::not_implemented_error();
|
||||
}
|
||||
|
@@ -21,7 +21,7 @@ namespace db
|
||||
int apply_write_set(const wsrep::const_buffer&) override;
|
||||
int commit() override;
|
||||
int rollback() override;
|
||||
int apply_toi(const wsrep::const_buffer&) override;
|
||||
int apply_toi(const wsrep::ws_meta&, const wsrep::const_buffer&) override;
|
||||
void after_apply() override;
|
||||
void store_globals() override { }
|
||||
void reset_globals() override { }
|
||||
|
Reference in New Issue
Block a user