| 343 | } |
| 344 | |
| 345 | Status PartitionedHashJoinNode::ProbePartition::PrepareForWrite( |
| 346 | PartitionedHashJoinNode* parent, bool pinned) { |
| 347 | RETURN_IF_ERROR(probe_rows_->Init(parent->label(), pinned)); |
| 348 | bool got_buffer; |
| 349 | RETURN_IF_ERROR(probe_rows_->PrepareForWrite(&got_buffer)); |
| 350 | DCHECK(got_buffer) << "Should have already acquired reservation"; |
| 351 | return Status::OK(); |
| 352 | } |
| 353 | |
| 354 | Status PartitionedHashJoinNode::ProbePartition::PrepareForRead() { |
| 355 | bool got_read_buffer; |
no test coverage detected