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:
committed by
Daniele Sciascia
parent
8ffad51822
commit
fd07ff12e4
@ -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);
|
||||
|
Reference in New Issue
Block a user