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