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

Function ExecAsyncForeignScanRequest

src/backend/executor/nodeForeignscan.c:477–485  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecAsyncForeignScanRequest * * Asynchronously request a tuple from a designed async-capable node * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

475 * ----------------------------------------------------------------
476 */
477void
478ExecAsyncForeignScanRequest(AsyncRequest *areq)
479{
480 ForeignScanState *node = (ForeignScanState *) areq->requestee;
481 FdwRoutine *fdwroutine = node->fdwroutine;
482
483 Assert(fdwroutine->ForeignAsyncRequest != NULL);
484 fdwroutine->ForeignAsyncRequest(areq);
485}
486
487/* ----------------------------------------------------------------
488 * ExecAsyncForeignScanConfigureWait

Callers 1

ExecAsyncRequestFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected