| 459 | } |
| 460 | |
| 461 | inline bool PartitionedHashJoinNode::AppendProbeRow( |
| 462 | BufferedTupleStream* stream, TupleRow* row, Status* status) { |
| 463 | DCHECK(stream->has_write_iterator()); |
| 464 | if (LIKELY(stream->AddRow(row, status))) return true; |
| 465 | return AppendProbeRowSlow(stream, row, status); // Don't cross-compile the slow path. |
| 466 | } |
| 467 | |
| 468 | template int PartitionedHashJoinNode::ProcessProbeBatch<TJoinOp::INNER_JOIN>( |
| 469 | TPrefetchMode::type prefetch_mode, RowBatch* out_batch, HashTableCtx* ht_ctx, |
nothing calls this directly
no test coverage detected