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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * nodeHashjoin.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: nodeHashjoin.h,v 1.14 1999/05/25 22:42:46 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef NODEHASHJOIN_H
  14. #define NODEHASHJOIN_H
  15. #include "nodes/plannodes.h"
  16. #include "nodes/execnodes.h"
  17. #include "utils/syscache.h"
  18. extern TupleTableSlot *ExecHashJoin(HashJoin *node);
  19. extern bool ExecInitHashJoin(HashJoin *node, EState *estate, Plan *parent);
  20. extern int ExecCountSlotsHashJoin(HashJoin *node);
  21. extern void ExecEndHashJoin(HashJoin *node);
  22. extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, BufFile *file);
  23. extern void ExecReScanHashJoin(HashJoin *node, ExprContext *exprCtxt, Plan *parent);
  24. #endif  /* NODEHASHJOIN_H */