---------------------------------------------------------------- * ExecRuntimeFilter * ---------------------------------------------------------------- */
| 50 | * ---------------------------------------------------------------- |
| 51 | */ |
| 52 | static TupleTableSlot * |
| 53 | ExecRuntimeFilter(PlanState *pstate) |
| 54 | { |
| 55 | RuntimeFilterState *node = castNode(RuntimeFilterState, pstate); |
| 56 | PlanState *outerPlan; |
| 57 | |
| 58 | outerPlan = outerPlanState(node); |
| 59 | /* Check whether this filter is ready */ |
| 60 | if (!node->build_finish || node->build_suspend) |
| 61 | return ExecProcNode(outerPlan); |
| 62 | |
| 63 | return RuntimeFilterTupleNext(node); |
| 64 | } |
| 65 | |
| 66 | static TupleTableSlot * |
| 67 | RuntimeFilterTupleNext(RuntimeFilterState *node) |
nothing calls this directly
no test coverage detected