postgresql/src/include/executor/nodeAgg.h

27 lines
722 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeAgg.h--
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodeAgg.h,v 1.8 1998/09/01 04:35:53 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEAGG_H
#define NODEAGG_H
1997-11-26 02:14:33 +01:00
#include "executor/tuptable.h"
#include "nodes/execnodes.h"
#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 */