mirror of
https://github.com/postgres/postgres.git
synced 2026-05-24 17:41:18 -04:00
5c25d60244
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
29 lines
863 B
C
29 lines
863 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeGroup.h
|
|
* prototypes for nodeGroup.c
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeGroup.h,v 1.13 2000/01/26 05:58:05 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEGROUP_H
|
|
#define NODEGROUP_H
|
|
|
|
#include "nodes/plannodes.h"
|
|
|
|
extern TupleTableSlot *ExecGroup(Group *node);
|
|
extern bool ExecInitGroup(Group *node, EState *estate, Plan *parent);
|
|
extern int ExecCountSlotsGroup(Group *node);
|
|
extern void ExecEndGroup(Group *node);
|
|
extern void ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
extern void ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
|
|
#endif /* NODEGROUP_H */
|