mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
18 lines
270 B
C++
18 lines
270 B
C++
|
#include <Access/QuotaUsageInfo.h>
|
||
|
#include <boost/range/algorithm/fill.hpp>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
QuotaUsageInfo::QuotaUsageInfo() : quota_id(UUID(UInt128(0)))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
QuotaUsageInfo::Interval::Interval()
|
||
|
{
|
||
|
boost::range::fill(used, 0);
|
||
|
boost::range::fill(max, 0);
|
||
|
}
|
||
|
}
|