Update copyright for 2022
[pgsql.git] / src / include / executor / nodeSetOp.h
bloba504cf8613ef379793356690cf08a51a87c99e87
1 /*-------------------------------------------------------------------------
3 * nodeSetOp.h
7 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/executor/nodeSetOp.h
12 *-------------------------------------------------------------------------
14 #ifndef NODESETOP_H
15 #define NODESETOP_H
17 #include "nodes/execnodes.h"
19 extern SetOpState *ExecInitSetOp(SetOp *node, EState *estate, int eflags);
20 extern void ExecEndSetOp(SetOpState *node);
21 extern void ExecReScanSetOp(SetOpState *node);
23 #endif /* NODESETOP_H */