mirror of
https://github.com/postgres/postgres.git
synced 2026-04-11 03:56:42 -04:00
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
27 lines
921 B
C
27 lines
921 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeHashjoin.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeHashjoin.h,v 1.28 2004/12/31 22:03:29 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEHASHJOIN_H
|
|
#define NODEHASHJOIN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsHashJoin(HashJoin *node);
|
|
extern HashJoinState *ExecInitHashJoin(HashJoin *node, EState *estate);
|
|
extern TupleTableSlot *ExecHashJoin(HashJoinState *node);
|
|
extern void ExecEndHashJoin(HashJoinState *node);
|
|
extern void ExecReScanHashJoin(HashJoinState *node, ExprContext *exprCtxt);
|
|
|
|
extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, BufFile *file);
|
|
|
|
#endif /* NODEHASHJOIN_H */
|