ClickHouse/dbms/include/DB/AggregateFunctions/AggregateFunctionFactory.h
2011-09-25 05:07:47 +00:00

29 lines
644 B
C++

#pragma once
#include <Poco/RegularExpression.h>
#include <DB/AggregateFunctions/IAggregateFunction.h>
namespace DB
{
/** Позволяет создать агрегатную функцию по её имени.
*/
class AggregateFunctionFactory
{
public:
AggregateFunctionFactory();
AggregateFunctionPtr get(const String & name, const DataTypes & argument_types) const;
AggregateFunctionPtr tryGet(const String & name, const DataTypes & argument_types) const;
AggregateFunctionPtr getByTypeID(const String & type_id) const;
};
using Poco::SharedPtr;
typedef SharedPtr<AggregateFunctionFactory> AggregateFunctionFactoryPtr;
}