Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / executor / nodeAgg.h
blobdda700a2f68d066ff285513f62ac925d95a10462
1 /*-------------------------------------------------------------------------
3 * nodeAgg.h
4 * prototypes for nodeAgg.c
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef NODEAGG_H
15 #define NODEAGG_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsAgg(Agg *node);
20 extern AggState *ExecInitAgg(Agg *node, EState *estate, int eflags);
21 extern TupleTableSlot *ExecAgg(AggState *node);
22 extern void ExecEndAgg(AggState *node);
23 extern void ExecReScanAgg(AggState *node, ExprContext *exprCtxt);
25 extern Size hash_agg_entry_size(int numAggs);
27 extern Datum aggregate_dummy(PG_FUNCTION_ARGS);
29 #endif /* NODEAGG_H */