| 18 | } |
| 19 | |
| 20 | DataTypePtr 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 | |
| 29 | String IAggregateFunction::getDescription() const |
| 30 | { |
no test coverage detected