PostgreSQL Source Code  git master
nodeForeignscan.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * nodeForeignscan.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2024, 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 
20 extern ForeignScanState *ExecInitForeignScan(ForeignScan *node, EState *estate, int eflags);
21 extern void ExecEndForeignScan(ForeignScanState *node);
22 extern void ExecReScanForeignScan(ForeignScanState *node);
23 
25  ParallelContext *pcxt);
27  ParallelContext *pcxt);
29  ParallelContext *pcxt);
31  ParallelWorkerContext *pwcxt);
32 extern void ExecShutdownForeignScan(ForeignScanState *node);
33 
34 extern void ExecAsyncForeignScanRequest(AsyncRequest *areq);
36 extern void ExecAsyncForeignScanNotify(AsyncRequest *areq);
37 
38 #endif /* NODEFOREIGNSCAN_H */
void ExecForeignScanInitializeDSM(ForeignScanState *node, ParallelContext *pcxt)
void ExecShutdownForeignScan(ForeignScanState *node)
ForeignScanState * ExecInitForeignScan(ForeignScan *node, EState *estate, int eflags)
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)