mirror of
https://github.com/postgres/postgres.git
synced 2025-12-24 00:04:23 -05:00
28 lines
918 B
C
28 lines
918 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeMaterial.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeMaterial.h,v 1.18 2002/06/20 20:29:49 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEMATERIAL_H
|
|
#define NODEMATERIAL_H
|
|
|
|
#include "nodes/plannodes.h"
|
|
|
|
extern TupleTableSlot *ExecMaterial(Material *node);
|
|
extern bool ExecInitMaterial(Material *node, EState *estate, Plan *parent);
|
|
extern int ExecCountSlotsMaterial(Material *node);
|
|
extern void ExecEndMaterial(Material *node);
|
|
extern void ExecMaterialMarkPos(Material *node);
|
|
extern void ExecMaterialRestrPos(Material *node);
|
|
extern void ExecMaterialReScan(Material *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
#endif /* NODEMATERIAL_H */
|