| 103 | } |
| 104 | |
| 105 | void PartitionedHashJoinPlanNode::Close() { |
| 106 | ScalarExpr::Close(probe_exprs_); |
| 107 | ScalarExpr::Close(build_exprs_); |
| 108 | ScalarExpr::Close(other_join_conjuncts_); |
| 109 | if (phj_builder_config_ != nullptr) phj_builder_config_->Close(); |
| 110 | PlanNode::Close(); |
| 111 | } |
| 112 | |
| 113 | Status PartitionedHashJoinPlanNode::CreateExecNode( |
| 114 | RuntimeState* state, ExecNode** node) const { |
no test coverage detected