| 69 | } |
| 70 | |
| 71 | void UnionPlanNode::Close() { |
| 72 | for (const vector<ScalarExpr*>& const_exprs : const_exprs_lists_) { |
| 73 | ScalarExpr::Close(const_exprs); |
| 74 | } |
| 75 | for (const vector<ScalarExpr*>& child_exprs : child_exprs_lists_) { |
| 76 | ScalarExpr::Close(child_exprs); |
| 77 | } |
| 78 | PlanNode::Close(); |
| 79 | } |
| 80 | |
| 81 | Status UnionPlanNode::CreateExecNode(RuntimeState* state, ExecNode** node) const { |
| 82 | ObjectPool* pool = state->obj_pool(); |
no test coverage detected