MCPcopy Create free account
hub / github.com/apache/impala / AppendProbeRow

Method AppendProbeRow

be/src/exec/partitioned-hash-join-node-ir.cc:461–466  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

459}
460
461inline 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
468template int PartitionedHashJoinNode::ProcessProbeBatch<TJoinOp::INNER_JOIN>(
469 TPrefetchMode::type prefetch_mode, RowBatch* out_batch, HashTableCtx* ht_ctx,

Callers

nothing calls this directly

Calls 2

has_write_iteratorMethod · 0.80
AddRowMethod · 0.45

Tested by

no test coverage detected