| 352 | } |
| 353 | |
| 354 | Status PartitionedHashJoinNode::ProbePartition::PrepareForRead() { |
| 355 | bool got_read_buffer; |
| 356 | RETURN_IF_ERROR(probe_rows_->PrepareForRead(true, &got_read_buffer)); |
| 357 | DCHECK(got_read_buffer) << "Accounted in min reservation"; |
| 358 | return Status::OK(); |
| 359 | } |
| 360 | |
| 361 | void PartitionedHashJoinNode::ProbePartition::Close(RowBatch* batch) { |
| 362 | if (IsClosed()) return; |
no test coverage detected