---------------------------------------------------------------- * ExecShutdownForeignScan * * Gives FDW chance to stop asynchronous resource consumption * and release any resources still held. * ---------------------------------------------------------------- */
| 460 | * ---------------------------------------------------------------- |
| 461 | */ |
| 462 | void |
| 463 | ExecShutdownForeignScan(ForeignScanState *node) |
| 464 | { |
| 465 | FdwRoutine *fdwroutine = node->fdwroutine; |
| 466 | |
| 467 | if (fdwroutine->ShutdownForeignScan) |
| 468 | fdwroutine->ShutdownForeignScan(node); |
| 469 | } |
| 470 | |
| 471 | /* ---------------------------------------------------------------- |
| 472 | * ExecAsyncForeignScanRequest |
no outgoing calls
no test coverage detected