mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
#include <Columns/ColumnVector.h>
|
|
#include <Common/assert_cast.h>
|
|
|
|
#include <AggregateFunctions/IAggregateFunction.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
template <typename T>
|
|
struct AggregateFunctionGroupBitOrData
|
|
{
|
|
T value = 0;
|
|
static const char * name() { return "groupBitOr"; }
|
|
void update(T x) { value |= x; }
|
|
};
|
|
|
|
template <typename T>
|
|
struct AggregateFunctionGroupBitAndData
|
|
{
|
|
T value = -1; /// Two's complement arithmetic, sign extension.
|
|
static const char * name() { return "groupBitAnd"; }
|
|
void update(T x) { value &= x; }
|
|
};
|
|
|
|
template <typename T>
|
|
struct AggregateFunctionGroupBitXorData
|
|
{
|
|
T value = 0;
|
|
static const char * name() { return "groupBitXor"; }
|
|
void update(T x) { value ^= x; }
|
|
};
|
|
|
|
|
|
/// Counts bitwise operation on numbers.
|
|
template <typename T, typename Data>
|
|
class AggregateFunctionBitwise final : public IAggregateFunctionDataHelper<Data, AggregateFunctionBitwise<T, Data>>
|
|
{
|
|
public:
|
|
AggregateFunctionBitwise(const DataTypePtr & type)
|
|
: IAggregateFunctionDataHelper<Data, AggregateFunctionBitwise<T, Data>>({type}, {}) {}
|
|
|
|
String getName() const override { return Data::name(); }
|
|
|
|
DataTypePtr getReturnType() const override
|
|
{
|
|
return std::make_shared<DataTypeNumber<T>>();
|
|
}
|
|
|
|
void add(AggregateDataPtr place, const IColumn ** columns, size_t row_num, Arena *) const override
|
|
{
|
|
this->data(place).update(assert_cast<const ColumnVector<T> &>(*columns[0]).getData()[row_num]);
|
|
}
|
|
|
|
void merge(AggregateDataPtr place, ConstAggregateDataPtr rhs, Arena *) const override
|
|
{
|
|
this->data(place).update(this->data(rhs).value);
|
|
}
|
|
|
|
void serialize(ConstAggregateDataPtr place, WriteBuffer & buf) const override
|
|
{
|
|
writeBinary(this->data(place).value, buf);
|
|
}
|
|
|
|
void deserialize(AggregateDataPtr place, ReadBuffer & buf, Arena *) const override
|
|
{
|
|
readBinary(this->data(place).value, buf);
|
|
}
|
|
|
|
void insertResultInto(AggregateDataPtr place, IColumn & to, Arena *) const override
|
|
{
|
|
assert_cast<ColumnVector<T> &>(to).getData().push_back(this->data(place).value);
|
|
}
|
|
};
|
|
|
|
|
|
}
|