mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
13 lines
218 B
C++
13 lines
218 B
C++
#pragma once
|
|
|
|
#include <Access/IAccessEntity.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
String serializeAccessEntity(const IAccessEntity & entity);
|
|
|
|
AccessEntityPtr deserializeAccessEntity(const String & definition, const String & path);
|
|
|
|
}
|