mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
dbms: style [#METR-2944].
This commit is contained in:
parent
5fae38cb97
commit
c013925329
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
namespace zkutil
|
namespace zkutil
|
||||||
{
|
{
|
||||||
typedef const ACL_vector * AclPtr;
|
typedef const ACL_vector * ACLPtr;
|
||||||
typedef Stat Stat;
|
typedef Stat Stat;
|
||||||
|
|
||||||
struct Op
|
struct Op
|
||||||
@ -41,7 +41,7 @@ private:
|
|||||||
|
|
||||||
struct Op::Create : public Op
|
struct Op::Create : public Op
|
||||||
{
|
{
|
||||||
Create(const std::string & path_, const std::string & value_, AclPtr acl, int32_t flags);
|
Create(const std::string & path_, const std::string & value_, ACLPtr acl, int32_t flags);
|
||||||
|
|
||||||
std::string getPathCreated()
|
std::string getPathCreated()
|
||||||
{
|
{
|
||||||
|
@ -64,9 +64,9 @@ public:
|
|||||||
*/
|
*/
|
||||||
bool expired();
|
bool expired();
|
||||||
|
|
||||||
AclPtr getDefaultACL();
|
ACLPtr getDefaultACL();
|
||||||
|
|
||||||
void setDefaultACL(AclPtr new_acl);
|
void setDefaultACL(ACLPtr new_acl);
|
||||||
|
|
||||||
/** Создать znode. Используется ACL, выставленный вызовом setDefaultACL (по умолчанию, всем полный доступ).
|
/** Создать znode. Используется ACL, выставленный вызовом setDefaultACL (по умолчанию, всем полный доступ).
|
||||||
* Если что-то пошло не так, бросить исключение.
|
* Если что-то пошло не так, бросить исключение.
|
||||||
|
@ -575,13 +575,13 @@ Op::Create::Create(const std::string & path_, const std::string & value_, AclPtr
|
|||||||
zoo_create_op_init(data.get(), path.c_str(), value.c_str(), value.size(), acl, flags, created_path.data(), created_path.size());
|
zoo_create_op_init(data.get(), path.c_str(), value.c_str(), value.size(), acl, flags, created_path.data(), created_path.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
AclPtr ZooKeeper::getDefaultACL()
|
ACLPtr ZooKeeper::getDefaultACL()
|
||||||
{
|
{
|
||||||
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
||||||
return default_acl;
|
return default_acl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ZooKeeper::setDefaultACL(AclPtr new_acl)
|
void ZooKeeper::setDefaultACL(ACLPtr new_acl)
|
||||||
{
|
{
|
||||||
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
||||||
default_acl = new_acl;
|
default_acl = new_acl;
|
||||||
|
Loading…
Reference in New Issue
Block a user