| 338 | } |
| 339 | |
| 340 | std::shared_ptr<ScalarAggregateFunction> AddSkewAggKernels() { |
| 341 | static const auto default_options = SkewOptions::Defaults(); |
| 342 | auto func = std::make_shared<ScalarAggregateFunction>("skew", Arity::Unary(), skew_doc, |
| 343 | &default_options); |
| 344 | AddStatisticKernels(StatisticInit<SkewOptions, StatisticType::Skew>, func.get()); |
| 345 | return func; |
| 346 | } |
| 347 | |
| 348 | std::shared_ptr<ScalarAggregateFunction> AddKurtosisAggKernels() { |
| 349 | static const auto default_options = SkewOptions::Defaults(); |
no test coverage detected