| 452 | } |
| 453 | |
| 454 | inline bool PartitionedHashJoinNode::AppendSpilledProbeRow( |
| 455 | BufferedTupleStream* stream, TupleRow* row, Status* status) { |
| 456 | DCHECK(stream->has_write_iterator()); |
| 457 | DCHECK(!stream->is_pinned()); |
| 458 | return stream->AddRow(row, status); |
| 459 | } |
| 460 | |
| 461 | inline bool PartitionedHashJoinNode::AppendProbeRow( |
| 462 | BufferedTupleStream* stream, TupleRow* row, Status* status) { |
nothing calls this directly
no test coverage detected