| 202 | } |
| 203 | |
| 204 | Status GroupByNode::ResetKernelStates() { |
| 205 | auto ctx = plan()->query_context()->exec_context(); |
| 206 | ARROW_RETURN_NOT_OK(InitKernels(agg_kernels_, ctx, aggs_, agg_src_types_)); |
| 207 | return Status::OK(); |
| 208 | } |
| 209 | |
| 210 | Status GroupByNode::Consume(ExecSpan batch) { |
| 211 | size_t thread_index = plan_->query_context()->GetThreadIndex(); |
nothing calls this directly
no test coverage detected