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

Function ExecAsyncForeignScanNotify

src/backend/executor/nodeForeignscan.c:509–517  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecAsyncForeignScanNotify * * Callback invoked when a relevant event has occurred * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

507 * ----------------------------------------------------------------
508 */
509void
510ExecAsyncForeignScanNotify(AsyncRequest *areq)
511{
512 ForeignScanState *node = (ForeignScanState *) areq->requestee;
513 FdwRoutine *fdwroutine = node->fdwroutine;
514
515 Assert(fdwroutine->ForeignAsyncNotify != NULL);
516 fdwroutine->ForeignAsyncNotify(areq);
517}

Callers 1

ExecAsyncNotifyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected