aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Access/IAccessEntity.cpp
blob: 5dc566fe456a194420b18da78054fea73dc7f9e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <Access/IAccessEntity.h>


namespace DB
{

bool IAccessEntity::equal(const IAccessEntity & other) const
{
    return (name == other.name) && (getType() == other.getType());
}

}