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

Method OutputBuildRow

be/src/exec/partitioned-hash-join-node.cc:812–820  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

810}
811
812void PartitionedHashJoinNode::OutputBuildRow(
813 RowBatch* out_batch, TupleRow* build_row, RowBatch::Iterator* out_batch_iterator) {
814 DCHECK(build_row != nullptr);
815 if (join_op_ == TJoinOp::RIGHT_ANTI_JOIN) {
816 out_batch->CopyRow(build_row, out_batch_iterator->Get());
817 } else {
818 CreateOutputRow(out_batch_iterator->Get(), nullptr, build_row);
819 }
820}
821
822Status PartitionedHashJoinNode::PrepareNullAwareNullProbe() {
823 DCHECK_EQ(null_probe_output_idx_, -1);

Callers

nothing calls this directly

Calls 2

CopyRowMethod · 0.80
GetMethod · 0.45

Tested by

no test coverage detected