| 275 | } |
| 276 | |
| 277 | void |
| 278 | ExecReScanRuntimeFilter(RuntimeFilterState *node) |
| 279 | { |
| 280 | /* |
| 281 | * if chgParam of subnode is not null then plan will be re-scanned by |
| 282 | * first ExecProcNode. |
| 283 | */ |
| 284 | if (node->ps.lefttree->chgParam == NULL) |
| 285 | ExecReScan(node->ps.lefttree); |
| 286 | } |
| 287 | |
| 288 | void |
| 289 | RFBuildFinishCallback(RuntimeFilterState *rfstate, bool parallel) |
no test coverage detected