| 144 | } |
| 145 | |
| 146 | void BlockingJoinNode::Close(RuntimeState* state) { |
| 147 | if (is_closed()) return; |
| 148 | build_batch_.reset(); |
| 149 | probe_batch_.reset(); |
| 150 | if (semi_join_staging_row_ != NULL) delete[] semi_join_staging_row_; |
| 151 | ExecNode::Close(state); |
| 152 | } |
| 153 | |
| 154 | void BlockingJoinNode::ProcessBuildInputAsync( |
| 155 | RuntimeState* state, JoinBuilder* build_sink, Status* status) { |
no test coverage detected