~ubuntu-branches/ubuntu/hardy/postgresql-8.4/hardy-backports

« back to all changes in this revision

Viewing changes to src/include/executor/nodeGroup.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * nodeGroup.h
 
4
 *        prototypes for nodeGroup.c
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * $PostgreSQL$
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef NODEGROUP_H
 
15
#define NODEGROUP_H
 
16
 
 
17
#include "nodes/execnodes.h"
 
18
 
 
19
extern int      ExecCountSlotsGroup(Group *node);
 
20
extern GroupState *ExecInitGroup(Group *node, EState *estate, int eflags);
 
21
extern TupleTableSlot *ExecGroup(GroupState *node);
 
22
extern void ExecEndGroup(GroupState *node);
 
23
extern void ExecReScanGroup(GroupState *node, ExprContext *exprCtxt);
 
24
 
 
25
#endif   /* NODEGROUP_H */