1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-06-16 02:01:44 +03:00

Refs codership/wsrep-API#21 added support for the IMPLICIT_DEPS WS flag

This commit is contained in:
Alexey Yurchenko
2018-11-22 17:16:28 +02:00
committed by Daniele Sciascia
parent 8ffad51822
commit fd07ff12e4
6 changed files with 28 additions and 3 deletions

View File

@ -108,6 +108,8 @@ std::string wsrep::flags_to_string(int flags)
oss << "prepare | ";
if (flags & provider::flag::snapshot)
oss << "snapshot | ";
if (flags & provider::flag::implicit_deps)
oss << "implicit_deps | ";
std::string ret(oss.str());
if (ret.size() > 3) ret.erase(ret.size() - 3);