PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
nodeForeignscan.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * nodeForeignscan.h
4 *
5 *
6 *
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/executor/nodeForeignscan.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef NODEFOREIGNSCAN_H
15#define NODEFOREIGNSCAN_H
16
17#include "access/parallel.h"
18#include "nodes/execnodes.h"
19
20extern ForeignScanState *ExecInitForeignScan(ForeignScan *node, EState *estate, int eflags);
21extern void ExecEndForeignScan(ForeignScanState *node);
23
25 ParallelContext *pcxt);
27 ParallelContext *pcxt);
29 ParallelContext *pcxt);
33
37
38#endif /* NODEFOREIGNSCAN_H */
ForeignScanState * ExecInitForeignScan(ForeignScan *node, EState *estate, int eflags)
void ExecForeignScanInitializeDSM(ForeignScanState *node, ParallelContext *pcxt)
void ExecShutdownForeignScan(ForeignScanState *node)
void ExecAsyncForeignScanNotify(AsyncRequest *areq)
void ExecAsyncForeignScanConfigureWait(AsyncRequest *areq)
void ExecAsyncForeignScanRequest(AsyncRequest *areq)
void ExecReScanForeignScan(ForeignScanState *node)
void ExecForeignScanReInitializeDSM(ForeignScanState *node, ParallelContext *pcxt)
void ExecEndForeignScan(ForeignScanState *node)
void ExecForeignScanEstimate(ForeignScanState *node, ParallelContext *pcxt)
void ExecForeignScanInitializeWorker(ForeignScanState *node, ParallelWorkerContext *pwcxt)