1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeAgg.h--
|
1997-09-07 01:04:48 -04:00
|
|
|
*
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
1997-09-08 17:56:23 -04:00
|
|
|
* $Id: nodeAgg.h,v 1.5 1997/09/08 21:52:01 momjian Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
1997-09-07 01:04:48 -04:00
|
|
|
#ifndef NODEAGG_H
|
|
|
|
|
#define NODEAGG_H
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-08 16:59:27 -04:00
|
|
|
extern TupleTableSlot *ExecAgg(Agg *node);
|
1997-09-08 17:56:23 -04:00
|
|
|
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);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
#endif /* NODEAGG_H */
|