| 83 | } |
| 84 | |
| 85 | inline HashAggregateKernel MakeKernel(std::shared_ptr<KernelSignature> signature, |
| 86 | KernelInit init, const bool ordered = false) { |
| 87 | HashAggregateKernel kernel(std::move(signature), std::move(init), HashAggregateResize, |
| 88 | HashAggregateConsume, HashAggregateMerge, |
| 89 | HashAggregateFinalize, ordered); |
| 90 | return kernel; |
| 91 | } |
| 92 | |
| 93 | inline HashAggregateKernel MakeKernel(InputType argument_type, KernelInit init, |
| 94 | const bool ordered = false) { |
no test coverage detected