mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
748 B
26 lines
748 B
|
26 years ago
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* nodeSetOp.h
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
|
* $Id: nodeSetOp.h,v 1.1 2000/10/05 19:11:36 tgl Exp $
|
||
|
|
*
|
||
|
|
*-------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
#ifndef NODESETOP_H
|
||
|
|
#define NODESETOP_H
|
||
|
|
|
||
|
|
#include "nodes/plannodes.h"
|
||
|
|
|
||
|
|
extern TupleTableSlot *ExecSetOp(SetOp *node);
|
||
|
|
extern bool ExecInitSetOp(SetOp *node, EState *estate, Plan *parent);
|
||
|
|
extern int ExecCountSlotsSetOp(SetOp *node);
|
||
|
|
extern void ExecEndSetOp(SetOp *node);
|
||
|
|
extern void ExecReScanSetOp(SetOp *node, ExprContext *exprCtxt, Plan *parent);
|
||
|
|
|
||
|
|
#endif /* NODESETOP_H */
|