1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

MDEV-32363 Add interface to set node isolation mode in provider

This commit is contained in:
Teemu Ollakka
2024-04-18 15:02:42 +03:00
parent 664d8cc01e
commit 31db847676
6 changed files with 96 additions and 3 deletions

View File

@ -294,6 +294,9 @@ namespace wsrep
enum wsrep::provider::status options(const std::string&)
WSREP_OVERRIDE
{ return wsrep::provider::success; }
enum status set_node_isolation(enum node_isolation) WSREP_OVERRIDE {
return error_not_implemented;
}
std::string name() const WSREP_OVERRIDE { return "mock"; }
std::string version() const WSREP_OVERRIDE { return "0.0"; }
std::string vendor() const WSREP_OVERRIDE { return "mock"; }