mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
27 lines
898 B
C
27 lines
898 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeHashjoin.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeHashjoin.h,v 1.17 2000/01/26 05:58:05 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEHASHJOIN_H
|
|
#define NODEHASHJOIN_H
|
|
|
|
#include "nodes/plannodes.h"
|
|
#include "storage/buffile.h"
|
|
|
|
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);
|
|
|
|
#endif /* NODEHASHJOIN_H */
|