diff options
Diffstat (limited to 'src/include/executor/nodeHashjoin.h')
-rw-r--r-- | src/include/executor/nodeHashjoin.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/include/executor/nodeHashjoin.h b/src/include/executor/nodeHashjoin.h index 62f02c976c6..17d88862432 100644 --- a/src/include/executor/nodeHashjoin.h +++ b/src/include/executor/nodeHashjoin.h @@ -1,28 +1,29 @@ /*------------------------------------------------------------------------- * * nodeHashjoin.h-- - * + * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeHashjoin.h,v 1.2 1997/08/19 21:38:22 momjian Exp $ + * $Id: nodeHashjoin.h,v 1.3 1997/09/07 04:57:53 momjian Exp $ * *------------------------------------------------------------------------- */ -#ifndef NODEHASHJOIN_H -#define NODEHASHJOIN_H +#ifndef NODEHASHJOIN_H +#define NODEHASHJOIN_H -extern TupleTableSlot *ExecHashJoin(HashJoin *node); +extern TupleTableSlot *ExecHashJoin(HashJoin * node); -extern bool ExecInitHashJoin(HashJoin *node, EState *estate, Plan *parent); +extern bool ExecInitHashJoin(HashJoin * node, EState * estate, Plan * parent); -extern int ExecCountSlotsHashJoin(HashJoin *node); +extern int ExecCountSlotsHashJoin(HashJoin * node); -extern void ExecEndHashJoin(HashJoin *node); +extern void ExecEndHashJoin(HashJoin * node); -extern char *ExecHashJoinSaveTuple(HeapTuple heapTuple, char *buffer, - File file, char *position); +extern char * +ExecHashJoinSaveTuple(HeapTuple heapTuple, char *buffer, + File file, char *position); -#endif /* NODEHASHJOIN_H */ +#endif /* NODEHASHJOIN_H */ |