---------------- * ExecFreeExprContext * * A plan node's ExprContext should be freed explicitly during executor * shutdown because there may be shutdown callbacks to call. (Other resources * made by the above routines, such as projection info, don't need to be freed * explicitly because they're just memory in the per-query memory context.) * * However ... there is no particular need to d
| 704 | * ---------------- |
| 705 | */ |
| 706 | void |
| 707 | ExecFreeExprContext(PlanState *planstate) |
| 708 | { |
| 709 | /* |
| 710 | * Per above discussion, don't actually delete the ExprContext. We do |
| 711 | * unlink it from the plan node, though. |
| 712 | */ |
| 713 | planstate->ps_ExprContext = NULL; |
| 714 | } |
| 715 | |
| 716 | |
| 717 | /* ---------------------------------------------------------------- |
no outgoing calls
no test coverage detected