1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-31 18:24:25 +03:00

Fix crash close_orphaned_sr_transactions() BF abort

Some implementations of provider `bf_abort()` require `victim_ctx`
to point to application side victim context. However, when
total order BF abort was done from `close_orphaned_sr_transactions()`,
the application side context was not available.

To fix this, added an interface method `call_in_operation_context()`
which allows invoking a function object with a reference to
application side operation context passed in as a parameter.
This method is used in `close_orphaned_sr_transactions()`
to call `client_state::total_order_bf_abort()` with appropriate
victim operation context.
This commit is contained in:
Teemu Ollakka
2023-09-16 10:11:49 +03:00
parent bd1a5c25a9
commit a7ce22ac91
4 changed files with 38 additions and 1 deletions

View File

@ -92,6 +92,14 @@ namespace db
return false;
}
void call_in_operation_context(
const std::function<void(wsrep::operation_context&)>& fn)
const override
{
wsrep::null_operation_context op;
fn(op);
}
void debug_sync(const char*) override { }
void debug_crash(const char*) override { }
private: