| 60 | } |
| 61 | |
| 62 | Status Kernel::InitAll(KernelContext* ctx, const KernelInitArgs& args, |
| 63 | std::vector<std::unique_ptr<KernelState>>* states) { |
| 64 | for (auto& state : *states) { |
| 65 | ARROW_ASSIGN_OR_RAISE(state, args.kernel->init(ctx, args)); |
| 66 | } |
| 67 | return Status::OK(); |
| 68 | } |
| 69 | |
| 70 | Result<std::unique_ptr<KernelState>> ScalarAggregateKernel::MergeAll( |
| 71 | const ScalarAggregateKernel* kernel, KernelContext* ctx, |
nothing calls this directly
no test coverage detected