mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
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);
|
|
}
|
|
}
|