---------------------------------------------------------------- * ExecResultMarkPos * ---------------------------------------------------------------- */
| 211 | * ---------------------------------------------------------------- |
| 212 | */ |
| 213 | void |
| 214 | ExecResultMarkPos(ResultState *node) |
| 215 | { |
| 216 | PlanState *outerPlan = outerPlanState(node); |
| 217 | |
| 218 | if (outerPlan != NULL) |
| 219 | ExecMarkPos(outerPlan); |
| 220 | else |
| 221 | elog(DEBUG2, "Result nodes do not support mark/restore"); |
| 222 | } |
| 223 | |
| 224 | /* ---------------------------------------------------------------- |
| 225 | * ExecResultRestrPos |
no test coverage detected