| 346 | } |
| 347 | |
| 348 | std::shared_ptr<ScalarAggregateFunction> AddKurtosisAggKernels() { |
| 349 | static const auto default_options = SkewOptions::Defaults(); |
| 350 | auto func = std::make_shared<ScalarAggregateFunction>("kurtosis", Arity::Unary(), |
| 351 | kurtosis_doc, &default_options); |
| 352 | AddStatisticKernels(StatisticInit<SkewOptions, StatisticType::Kurtosis>, func.get()); |
| 353 | return func; |
| 354 | } |
| 355 | |
| 356 | } // namespace |
| 357 |
no test coverage detected