mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
dd8b29b4fb
This change simplifies handling of access entities in access storages.
13 lines
187 B
C++
13 lines
187 B
C++
#include <Access/IAccessEntity.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
bool IAccessEntity::equal(const IAccessEntity & other) const
|
|
{
|
|
return (name == other.name) && (getType() == other.getType());
|
|
}
|
|
|
|
}
|