postgresql/src/include/executor/nodeGroup.h

26 lines
778 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeGroup.h
* prototypes for nodeGroup.c
*
*
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
2000-01-27 00:48:05 +01:00
* $Id: nodeGroup.h,v 1.14 2000/01/26 23:48:05 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEGROUP_H
#define NODEGROUP_H
1997-11-26 02:14:33 +01:00
#include "nodes/plannodes.h"
extern TupleTableSlot *ExecGroup(Group *node);
extern bool ExecInitGroup(Group *node, EState *estate, Plan *parent);
extern int ExecCountSlotsGroup(Group *node);
extern void ExecEndGroup(Group *node);
1998-07-16 03:49:19 +02:00
extern void ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent);
1999-05-25 18:15:34 +02:00
#endif /* NODEGROUP_H */