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

Method DebugString

be/src/exec/blocking-join-node.cc:367–375  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367void BlockingJoinNode::DebugString(int indentation_level, stringstream* out) const {
368 *out << string(indentation_level * 2, ' ');
369 *out << node_name_;
370 *out << "(eos=" << (eos_ ? "true" : "false")
371 << " probe_batch_pos=" << probe_batch_pos_;
372 AddToDebugString(indentation_level, out);
373 ExecNode::DebugString(indentation_level, out);
374 *out << ")";
375}
376
377string BlockingJoinNode::GetLeftChildRowString(TupleRow* row) {
378 stringstream out;

Callers 1

PrepareMethod · 0.45

Calls 1

DebugStringFunction · 0.50

Tested by

no test coverage detected