mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
14 lines
349 B
C++
14 lines
349 B
C++
#include <Access/SettingsProfile.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
bool SettingsProfile::equal(const IAccessEntity & other) const
|
|
{
|
|
if (!IAccessEntity::equal(other))
|
|
return false;
|
|
const auto & other_profile = typeid_cast<const SettingsProfile &>(other);
|
|
return (elements == other_profile.elements) && (to_roles == other_profile.to_roles);
|
|
}
|
|
}
|