| 365 | } |
| 366 | |
| 367 | void 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 | |
| 377 | string BlockingJoinNode::GetLeftChildRowString(TupleRow* row) { |
| 378 | stringstream out; |