---------------------------------------------------------------- * ExecResultRestrPos * ---------------------------------------------------------------- */
| 226 | * ---------------------------------------------------------------- |
| 227 | */ |
| 228 | void |
| 229 | ExecResultRestrPos(ResultState *node) |
| 230 | { |
| 231 | PlanState *outerPlan = outerPlanState(node); |
| 232 | |
| 233 | if (outerPlan != NULL) |
| 234 | ExecRestrPos(outerPlan); |
| 235 | else |
| 236 | elog(ERROR, "Result nodes do not support mark/restore"); |
| 237 | } |
| 238 | |
| 239 | /* ---------------------------------------------------------------- |
| 240 | * ExecInitResult |
no test coverage detected