mirror of
https://github.com/postgres/postgres.git
synced 2026-02-14 00:03:18 -05:00
29 lines
871 B
C
29 lines
871 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeGroup.h
|
|
* prototypes for nodeGroup.c
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeGroup.h,v 1.9 1999/02/13 23:21:25 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEGROUP_H
|
|
#define NODEGROUP_H
|
|
|
|
#include "executor/tuptable.h"
|
|
#include "nodes/execnodes.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);
|
|
/***S*I***/
|
|
extern void ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
|
|
#endif /* NODEGROUP_H */
|