mirror of
https://github.com/postgres/postgres.git
synced 2026-01-13 12:22:55 +03:00
28 lines
801 B
C
28 lines
801 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeGroup.h
|
|
* prototypes for nodeGroup.c
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeGroup.h,v 1.12 1999/07/15 15:21:11 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 */
|