ClickHouse/src/Access/Quota.cpp

24 lines
623 B
C++
Raw Normal View History

2019-11-04 19:17:27 +00:00
#include <Access/Quota.h>
#include <boost/range/algorithm/equal.hpp>
namespace DB
{
bool operator ==(const Quota::Limits & lhs, const Quota::Limits & rhs)
{
return boost::range::equal(lhs.max, rhs.max) && (lhs.duration == rhs.duration)
&& (lhs.randomize_interval == rhs.randomize_interval);
}
bool Quota::equal(const IAccessEntity & other) const
{
if (!IAccessEntity::equal(other))
return false;
const auto & other_quota = typeid_cast<const Quota &>(other);
return (all_limits == other_quota.all_limits) && (key_type == other_quota.key_type) && (to_roles == other_quota.to_roles);
2019-11-04 19:17:27 +00:00
}
}