Update copyright for 2022
[pgsql.git] / src / include / executor / nodeHashjoin.h
blobb3b5a2c3f2707b556fb63719fd8479434352a809
1 /*-------------------------------------------------------------------------
3 * nodeHashjoin.h
4 * prototypes for nodeHashjoin.c
7 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/executor/nodeHashjoin.h
12 *-------------------------------------------------------------------------
14 #ifndef NODEHASHJOIN_H
15 #define NODEHASHJOIN_H
17 #include "access/parallel.h"
18 #include "nodes/execnodes.h"
19 #include "storage/buffile.h"
21 extern HashJoinState *ExecInitHashJoin(HashJoin *node, EState *estate, int eflags);
22 extern void ExecEndHashJoin(HashJoinState *node);
23 extern void ExecReScanHashJoin(HashJoinState *node);
24 extern void ExecShutdownHashJoin(HashJoinState *node);
25 extern void ExecHashJoinEstimate(HashJoinState *state, ParallelContext *pcxt);
26 extern void ExecHashJoinInitializeDSM(HashJoinState *state, ParallelContext *pcxt);
27 extern void ExecHashJoinReInitializeDSM(HashJoinState *state, ParallelContext *pcxt);
28 extern void ExecHashJoinInitializeWorker(HashJoinState *state,
29 ParallelWorkerContext *pwcxt);
31 extern void ExecHashJoinSaveTuple(MinimalTuple tuple, uint32 hashvalue,
32 BufFile **fileptr);
34 #endif /* NODEHASHJOIN_H */