mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
31 lines
910 B
C
31 lines
910 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeMaterial.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeMaterial.h,v 1.8 1998/09/01 04:36:01 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEMATERIAL_H
|
|
#define NODEMATERIAL_H
|
|
|
|
#include "executor/tuptable.h"
|
|
#include "nodes/execnodes.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 ExecMaterialReScan(Material *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
#if 0
|
|
extern List ExecMaterialMarkPos(Material *node);
|
|
extern void ExecMaterialRestrPos(Material *node);
|
|
|
|
#endif
|
|
#endif /* NODEMATERIAL_H */
|