nodeMaterial.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * nodeMaterial.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: nodeMaterial.h,v 1.10 1999/02/21 03:49:44 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef NODEMATERIAL_H
  14. #define NODEMATERIAL_H
  15. #include "executor/tuptable.h"
  16. #include "nodes/execnodes.h"
  17. #include "nodes/plannodes.h"
  18. extern TupleTableSlot *ExecMaterial(Material *node);
  19. extern bool ExecInitMaterial(Material *node, EState *estate, Plan *parent);
  20. extern int ExecCountSlotsMaterial(Material *node);
  21. extern void ExecEndMaterial(Material *node);
  22. extern void ExecMaterialReScan(Material *node, ExprContext *exprCtxt, Plan *parent);
  23. #ifdef NOT_USED
  24. extern List ExecMaterialMarkPos(Material *node);
  25. extern void ExecMaterialRestrPos(Material *node);
  26. #endif
  27. #endif  /* NODEMATERIAL_H */