nodeAgg.h 782 B

12345678910111213141516171819202122232425262728
  1. /*-------------------------------------------------------------------------
  2. *
  3. * nodeAgg.h
  4. * prototypes for nodeAgg.c
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/executor/nodeAgg.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef NODEAGG_H
  15. #define NODEAGG_H
  16. #include "nodes/execnodes.h"
  17. extern AggState *ExecInitAgg(Agg *node, EState *estate, int eflags);
  18. extern TupleTableSlot *ExecAgg(AggState *node);
  19. extern void ExecEndAgg(AggState *node);
  20. extern void ExecReScanAgg(AggState *node);
  21. extern Size hash_agg_entry_size(int numAggs);
  22. extern Datum aggregate_dummy(PG_FUNCTION_ARGS);
  23. #endif /* NODEAGG_H */