---------------- * ExecAssignExprContext * * This initializes the ps_ExprContext field. It is only necessary * to do this for nodes which use ExecQual or ExecProject * because those routines require an econtext. Other nodes that * don't have to evaluate expressions don't need to do this. * ---------------- */
| 534 | * ---------------- |
| 535 | */ |
| 536 | void |
| 537 | ExecAssignExprContext(EState *estate, PlanState *planstate) |
| 538 | { |
| 539 | planstate->ps_ExprContext = CreateExprContext(estate); |
| 540 | } |
| 541 | |
| 542 | /* ---------------- |
| 543 | * ExecGetResultType |
no test coverage detected