mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
Add missing file
This commit is contained in:
parent
c87563996f
commit
710bf3c9c4
13
src/AggregateFunctions/IAggregateFunction.cpp
Normal file
13
src/AggregateFunctions/IAggregateFunction.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include <AggregateFunctions/IAggregateFunction.h>
|
||||
#include <DataTypes/DataTypeAggregateFunction.h>
|
||||
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
||||
DataTypePtr IAggregateFunction::getStateType() const
|
||||
{
|
||||
return std::make_shared<DataTypeAggregateFunction>(shared_from_this(), argument_types, parameters);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user