postgresql/src/include/executor/nodeAgg.h

27 lines
720 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeAgg.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodeAgg.h,v 1.9 1999/02/13 23:21:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEAGG_H
#define NODEAGG_H
1997-11-25 20:14:33 -05:00
#include "executor/tuptable.h"
#include "nodes/execnodes.h"
#include "nodes/plannodes.h"
1997-09-08 16:59:27 -04:00
extern TupleTableSlot *ExecAgg(Agg *node);
extern bool ExecInitAgg(Agg *node, EState *estate, Plan *parent);
1997-09-08 16:59:27 -04:00
extern int ExecCountSlotsAgg(Agg *node);
extern void ExecEndAgg(Agg *node);
1998-02-12 22:46:56 -05:00
extern void ExecReScanAgg(Agg *node, ExprContext *exprCtxt, Plan *parent);
#endif /* NODEAGG_H */