MCPcopy Create free account
hub / github.com/apache/cloudberry / ExecShutdownForeignScan

Function ExecShutdownForeignScan

src/backend/executor/nodeForeignscan.c:462–469  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecShutdownForeignScan * * Gives FDW chance to stop asynchronous resource consumption * and release any resources still held. * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

460 * ----------------------------------------------------------------
461 */
462void
463ExecShutdownForeignScan(ForeignScanState *node)
464{
465 FdwRoutine *fdwroutine = node->fdwroutine;
466
467 if (fdwroutine->ShutdownForeignScan)
468 fdwroutine->ShutdownForeignScan(node);
469}
470
471/* ----------------------------------------------------------------
472 * ExecAsyncForeignScanRequest

Callers 2

ExecSquelchNodeFunction · 0.85
ExecShutdownNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected