* Hand off evaluation of a subplan to nodeSubplan.c */
| 4153 | * Hand off evaluation of a subplan to nodeSubplan.c |
| 4154 | */ |
| 4155 | void |
| 4156 | ExecEvalSubPlan(ExprState *state, ExprEvalStep *op, ExprContext *econtext) |
| 4157 | { |
| 4158 | SubPlanState *sstate = op->d.subplan.sstate; |
| 4159 | |
| 4160 | /* could potentially be nested, so make sure there's enough stack */ |
| 4161 | check_stack_depth(); |
| 4162 | |
| 4163 | *op->resvalue = ExecSubPlan(sstate, econtext, op->resnull); |
| 4164 | } |
| 4165 | |
| 4166 | /* |
| 4167 | * Evaluate a wholerow Var expression. |
no test coverage detected