ClickHouse/dbms/include/DB/AggregateFunctions/AggregateFunctionCount.h

69 lines
1.3 KiB
C
Raw Normal View History

2011-09-19 03:40:05 +00:00
#pragma once
#include <DB/IO/WriteHelpers.h>
#include <DB/IO/ReadHelpers.h>
#include <DB/DataTypes/DataTypesNumberFixed.h>
2011-09-19 03:40:05 +00:00
#include <DB/AggregateFunctions/INullaryAggregateFunction.h>
namespace DB
{
struct AggregateFunctionCountData
2011-09-19 03:40:05 +00:00
{
UInt64 count;
AggregateFunctionCountData() : count(0) {}
};
/// Просто считает, сколько раз её вызвали
class AggregateFunctionCount final : public INullaryAggregateFunction<AggregateFunctionCountData, AggregateFunctionCount>
{
public:
2011-09-19 03:40:05 +00:00
String getName() const { return "count"; }
DataTypePtr getReturnType() const
{
return new DataTypeUInt64;
2011-09-19 03:40:05 +00:00
}
void addZero(AggregateDataPtr place) const
{
++data(place).count;
}
void merge(AggregateDataPtr place, ConstAggregateDataPtr rhs) const
2011-09-19 03:40:05 +00:00
{
data(place).count += data(rhs).count;
2011-09-19 03:40:05 +00:00
}
void serialize(ConstAggregateDataPtr place, WriteBuffer & buf) const
2011-09-19 03:40:05 +00:00
{
writeVarUInt(data(place).count, buf);
2011-09-19 03:40:05 +00:00
}
void deserializeMerge(AggregateDataPtr place, ReadBuffer & buf) const
2011-09-19 03:40:05 +00:00
{
UInt64 tmp;
readVarUInt(tmp, buf);
data(place).count += tmp;
2011-09-19 03:40:05 +00:00
}
void insertResultInto(ConstAggregateDataPtr place, IColumn & to) const
2011-09-19 03:40:05 +00:00
{
static_cast<ColumnUInt64 &>(to).getData().push_back(data(place).count);
2011-09-19 03:40:05 +00:00
}
2012-07-15 23:13:08 +00:00
/// Для оптимизации
void addDelta(AggregateDataPtr place, UInt64 x) const
2012-07-15 23:13:08 +00:00
{
data(place).count += x;
2012-07-15 23:13:08 +00:00
}
2011-09-19 03:40:05 +00:00
};
}