| 60 | namespace aggregate { |
| 61 | |
| 62 | Status GroupByNode::Init() { |
| 63 | output_task_group_id_ = plan_->query_context()->RegisterTaskGroup( |
| 64 | [this](size_t, int64_t task_id) { return OutputNthBatch(task_id); }, |
| 65 | [](size_t) { return Status::OK(); }); |
| 66 | return Status::OK(); |
| 67 | } |
| 68 | |
| 69 | Result<AggregateNodeArgs<HashAggregateKernel>> GroupByNode::MakeAggregateNodeArgs( |
| 70 | const std::shared_ptr<Schema>& input_schema, const std::vector<FieldRef>& keys, |
nothing calls this directly
no test coverage detected