Add missing file

This commit is contained in:
Alexey Milovidov 2021-06-07 01:30:27 +03:00
parent c87563996f
commit 710bf3c9c4

View 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);
}
}