postgresql/src/include/executor/nodeHashjoin.h

30 lines
821 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeHashjoin.h--
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
1997-11-25 20:14:33 -05:00
* $Id: nodeHashjoin.h,v 1.6 1997/11/26 01:12:50 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEHASHJOIN_H
#define NODEHASHJOIN_H
1997-11-25 20:14:33 -05:00
#include "nodes/plannodes.h"
#include "nodes/execnodes.h"
#include "utils/syscache.h"
1997-11-25 20:14:33 -05:00
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 char *
ExecHashJoinSaveTuple(HeapTuple heapTuple, char *buffer,
File file, char *position);
#endif /* NODEHASHJOIN_H */