1 /*-------------------------------------------------------------------------
7 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/executor/nodeAppend.h
12 *-------------------------------------------------------------------------
17 #include "access/parallel.h"
18 #include "nodes/execnodes.h"
20 extern AppendState
*ExecInitAppend(Append
*node
, EState
*estate
, int eflags
);
21 extern void ExecEndAppend(AppendState
*node
);
22 extern void ExecReScanAppend(AppendState
*node
);
23 extern void ExecAppendEstimate(AppendState
*node
, ParallelContext
*pcxt
);
24 extern void ExecAppendInitializeDSM(AppendState
*node
, ParallelContext
*pcxt
);
25 extern void ExecAppendReInitializeDSM(AppendState
*node
, ParallelContext
*pcxt
);
26 extern void ExecAppendInitializeWorker(AppendState
*node
, ParallelWorkerContext
*pwcxt
);
28 extern void ExecAsyncAppendResponse(AsyncRequest
*areq
);
30 #endif /* NODEAPPEND_H */