* ExecTableFunction - wrapper around TableFunctionNext */
| 232 | * ExecTableFunction - wrapper around TableFunctionNext |
| 233 | */ |
| 234 | static TupleTableSlot * |
| 235 | ExecTableFunction(PlanState *pstate) |
| 236 | { |
| 237 | TableFunctionState *node = castNode(TableFunctionState, pstate); |
| 238 | |
| 239 | return ExecScan(&node->ss, |
| 240 | (ExecScanAccessMtd) TableFunctionNext, |
| 241 | (ExecScanRecheckMtd) TableFunctionRecheck); |
| 242 | } |
| 243 | |
| 244 | |
| 245 | /* |
nothing calls this directly
no test coverage detected