---------------------------------------------------------------- * ExecEndLockRows * * This shuts down the subplan and frees resources allocated * to this node. * ---------------------------------------------------------------- */
| 383 | * ---------------------------------------------------------------- |
| 384 | */ |
| 385 | void |
| 386 | ExecEndLockRows(LockRowsState *node) |
| 387 | { |
| 388 | /* We may have shut down EPQ already, but no harm in another call */ |
| 389 | EvalPlanQualEnd(&node->lr_epqstate); |
| 390 | ExecEndNode(outerPlanState(node)); |
| 391 | } |
| 392 | |
| 393 | |
| 394 | void |
no test coverage detected