| 337 | } |
| 338 | |
| 339 | Status GroupByNode::OutputNthBatch(int64_t n) { |
| 340 | int64_t batch_size = output_batch_size(); |
| 341 | return output_->InputReceived(this, out_data_.Slice(batch_size * n, batch_size)); |
| 342 | } |
| 343 | |
| 344 | Status GroupByNode::OutputResult(bool is_last) { |
| 345 | // To simplify merging, ensure that the first grouper is nonempty |
nothing calls this directly
no test coverage detected