postgresql/src/include/executor/nodeAgg.h

26 lines
744 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeAgg.h
*
*
*
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: nodeAgg.h,v 1.15 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEAGG_H
#define NODEAGG_H
1997-11-26 02:14:33 +01:00
#include "nodes/plannodes.h"
1997-09-08 22:59:27 +02:00
extern TupleTableSlot *ExecAgg(Agg *node);
extern bool ExecInitAgg(Agg *node, EState *estate, Plan *parent);
1997-09-08 22:59:27 +02:00
extern int ExecCountSlotsAgg(Agg *node);
extern void ExecEndAgg(Agg *node);
1998-02-13 04:46:56 +01:00
extern void ExecReScanAgg(Agg *node, ExprContext *exprCtxt, Plan *parent);
#endif /* NODEAGG_H */