]> granicus.if.org Git - postgresql/blobdiff - src/include/executor/nodeHashjoin.h
Update copyright for the year 2010.
[postgresql] / src / include / executor / nodeHashjoin.h
index 2061ac7bdcaf78310627ade614dc4b614b8100db..462410d95c7bc1e2305de0fec378241904240711 100644 (file)
@@ -1,25 +1,28 @@
 /*-------------------------------------------------------------------------
  *
  * nodeHashjoin.h
+ *       prototypes for nodeHashjoin.c
  *
  *
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
- * Copyright (c) 1994, Regents of the University of California
- *
- * $Id: nodeHashjoin.h,v 1.15 1999/07/15 15:21:12 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/executor/nodeHashjoin.h,v 1.40 2010/01/02 16:58:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef NODEHASHJOIN_H
 #define NODEHASHJOIN_H
 
-#include "nodes/plannodes.h"
+#include "nodes/execnodes.h"
+#include "storage/buffile.h"
+
+extern HashJoinState *ExecInitHashJoin(HashJoin *node, EState *estate, int eflags);
+extern TupleTableSlot *ExecHashJoin(HashJoinState *node);
+extern void ExecEndHashJoin(HashJoinState *node);
+extern void ExecReScanHashJoin(HashJoinState *node, ExprContext *exprCtxt);
 
-extern TupleTableSlot *ExecHashJoin(HashJoin *node);
-extern bool ExecInitHashJoin(HashJoin *node, EState *estate, Plan *parent);
-extern int     ExecCountSlotsHashJoin(HashJoin *node);
-extern void ExecEndHashJoin(HashJoin *node);
-extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, BufFile *file);
-extern void ExecReScanHashJoin(HashJoin *node, ExprContext *exprCtxt, Plan *parent);
+extern void ExecHashJoinSaveTuple(MinimalTuple tuple, uint32 hashvalue,
+                                         BufFile **fileptr);
 
-#endif  /* NODEHASHJOIN_H */
+#endif   /* NODEHASHJOIN_H */