| 275 | */ |
| 276 | #ifndef FRONTEND |
| 277 | static inline TupleTableSlot * |
| 278 | ExecProcNode(PlanState *node) |
| 279 | { |
| 280 | if (node->chgParam != NULL) /* something changed? */ |
| 281 | ExecReScan(node); /* let ReScan handle this */ |
| 282 | |
| 283 | return node->ExecProcNode(node); |
| 284 | } |
| 285 | #endif |
| 286 | |
| 287 | extern void ExecSquelchNode(PlanState *node, bool force); |
no test coverage detected