| 705 | } |
| 706 | |
| 707 | Status Process(ExecBatch batch) override { |
| 708 | auto rb = *batch.ToRecordBatch(schema_); |
| 709 | DEBUG_SYNC(node_, "received batch from input ", index_, ":", DEBUG_MANIP(std::endl), |
| 710 | rb->ToString(), DEBUG_MANIP(std::endl)); |
| 711 | return Push(rb); |
| 712 | } |
| 713 | void Rehash() { |
| 714 | DEBUG_SYNC(node_, "rehashing for input ", index_, ":", DEBUG_MANIP(std::endl)); |
| 715 | MemoStore new_memo(DEBUG_ADD(memo_.no_future_, node_, index_)); |
nothing calls this directly
no test coverage detected