postgresql/src/include/executor/nodeGroup.h

26 lines
832 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeGroup.h
* prototypes for nodeGroup.c
*
*
2004-08-29 00:13:13 -04:00
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2004-08-29 00:13:13 -04:00
* $PostgreSQL: pgsql/src/include/executor/nodeGroup.h,v 1.27 2004/08/29 04:13:06 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEGROUP_H
#define NODEGROUP_H
#include "nodes/execnodes.h"
1997-11-25 20:14:33 -05:00
extern int ExecCountSlotsGroup(Group *node);
extern GroupState *ExecInitGroup(Group *node, EState *estate);
extern TupleTableSlot *ExecGroup(GroupState *node);
extern void ExecEndGroup(GroupState *node);
extern void ExecReScanGroup(GroupState *node, ExprContext *exprCtxt);
1999-05-25 12:15:34 -04:00
#endif /* NODEGROUP_H */