mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <AggregateFunctions/IAggregateFunction.h>
|
|
|
|
#include <DataTypes/IDataType.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Type - the state of the aggregate function.
|
|
* Type parameters is an aggregate function, the types of its arguments, and its parameters (for parametric aggregate functions).
|
|
*/
|
|
class DataTypeAggregateFunction final : public IDataType
|
|
{
|
|
private:
|
|
AggregateFunctionPtr function;
|
|
DataTypes argument_types;
|
|
Array parameters;
|
|
|
|
public:
|
|
static constexpr bool is_parametric = true;
|
|
|
|
DataTypeAggregateFunction(const AggregateFunctionPtr & function_, const DataTypes & argument_types_, const Array & parameters_)
|
|
: function(function_), argument_types(argument_types_), parameters(parameters_)
|
|
{
|
|
}
|
|
|
|
std::string getFunctionName() const { return function->getName(); }
|
|
AggregateFunctionPtr getFunction() const { return function; }
|
|
|
|
std::string doGetName() const override;
|
|
const char * getFamilyName() const override { return "AggregateFunction"; }
|
|
TypeIndex getTypeId() const override { return TypeIndex::AggregateFunction; }
|
|
|
|
bool canBeInsideNullable() const override { return false; }
|
|
|
|
DataTypePtr getReturnType() const { return function->getReturnType(); }
|
|
DataTypePtr getReturnTypeToPredict() const { return function->getReturnTypeToPredict(); }
|
|
DataTypes getArgumentsDataTypes() const { return argument_types; }
|
|
|
|
MutableColumnPtr createColumn() const override;
|
|
|
|
Field getDefault() const override;
|
|
|
|
bool equals(const IDataType & rhs) const override;
|
|
|
|
bool isParametric() const override { return true; }
|
|
bool haveSubtypes() const override { return false; }
|
|
bool shouldAlignRightInPrettyFormats() const override { return false; }
|
|
|
|
SerializationPtr doGetDefaultSerialization() const override;
|
|
};
|
|
|
|
|
|
}
|
|
|