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

Remove provider position from ws_meta and view

Provider position clutters the public interface and is not
required by wsrep-API v26. Remove the position from ws_meta/view
classes and deal with it internally in custom providers.
This commit is contained in:
Teemu Ollakka
2023-09-07 14:55:59 +03:00
parent 41fee48c9e
commit bd1a5c25a9
15 changed files with 70 additions and 121 deletions

View File

@ -135,8 +135,7 @@ wsrep::view db::server_service::get_view(wsrep::client_service&,
stored_view.capabilities(),
my_idx,
stored_view.protocol_version(),
stored_view.members(),
0
stored_view.members()
);
return my_view;
}