Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeAgg.h
blobc26a4ca774e9a198b6c79b0fb5bf8d76800aedc4
1 /*-------------------------------------------------------------------------
3 * nodeAgg.h
4 * prototypes for nodeAgg.c
7 * Portions Copyright (c) 1996-2008, 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 */