2000-10-05 15:11:39 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeSetOp.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2010-01-02 11:58:17 -05:00
|
|
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
2000-10-05 15:11:39 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2010-07-12 13:01:06 -04:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeSetOp.h,v 1.19 2010/07/12 17:01:06 tgl Exp $
|
2000-10-05 15:11:39 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODESETOP_H
|
|
|
|
|
#define NODESETOP_H
|
|
|
|
|
|
2002-12-05 10:50:39 -05:00
|
|
|
#include "nodes/execnodes.h"
|
2000-10-05 15:11:39 -04:00
|
|
|
|
2006-02-27 23:10:28 -05:00
|
|
|
extern SetOpState *ExecInitSetOp(SetOp *node, EState *estate, int eflags);
|
2002-12-05 10:50:39 -05:00
|
|
|
extern TupleTableSlot *ExecSetOp(SetOpState *node);
|
|
|
|
|
extern void ExecEndSetOp(SetOpState *node);
|
2010-07-12 13:01:06 -04:00
|
|
|
extern void ExecReScanSetOp(SetOpState *node);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* NODESETOP_H */
|