mirror of
https://github.com/postgres/postgres.git
synced 2025-08-25 20:23:07 +03:00
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeHashjoin.h
|
|
* prototypes for nodeHashjoin.c
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeHashjoin.h,v 1.38 2009/01/01 17:23:59 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEHASHJOIN_H
|
|
#define NODEHASHJOIN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
#include "storage/buffile.h"
|
|
|
|
extern int ExecCountSlotsHashJoin(HashJoin *node);
|
|
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 void ExecHashJoinSaveTuple(MinimalTuple tuple, uint32 hashvalue,
|
|
BufFile **fileptr);
|
|
|
|
#endif /* NODEHASHJOIN_H */
|