MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / getNormalizedStateType

Method getNormalizedStateType

src/AggregateFunctions/IAggregateFunction.cpp:20–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20DataTypePtr IAggregateFunction::getNormalizedStateType() const
21{
22 DataTypes normalized_argument_types;
23 normalized_argument_types.reserve(argument_types.size());
24 for (const auto & arg : argument_types)
25 normalized_argument_types.emplace_back(arg->getNormalizedType());
26 return std::make_shared<DataTypeAggregateFunction>(shared_from_this(), normalized_argument_types, parameters);
27}
28
29String IAggregateFunction::getDescription() const
30{

Callers 2

equalsIgnoringVariantMethod · 0.45
equalsMethod · 0.45

Calls 4

reserveMethod · 0.45
sizeMethod · 0.45
emplace_backMethod · 0.45
getNormalizedTypeMethod · 0.45

Tested by

no test coverage detected