diff options
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/hashjoin.h | 3 | ||||
-rw-r--r-- | src/include/executor/nodeHashjoin.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/include/executor/hashjoin.h b/src/include/executor/hashjoin.h index 724a7ddd313..f501cd03654 100644 --- a/src/include/executor/hashjoin.h +++ b/src/include/executor/hashjoin.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hashjoin.h,v 1.14 1999/07/15 15:21:08 momjian Exp $ + * $Id: hashjoin.h,v 1.15 1999/10/13 15:02:26 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -14,6 +14,7 @@ #define HASHJOIN_H #include "access/htup.h" +#include "storage/buffile.h" /* ---------------------------------------------------------------- * hash-join hash table structures diff --git a/src/include/executor/nodeHashjoin.h b/src/include/executor/nodeHashjoin.h index 2061ac7bdca..9d5390f79c6 100644 --- a/src/include/executor/nodeHashjoin.h +++ b/src/include/executor/nodeHashjoin.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeHashjoin.h,v 1.15 1999/07/15 15:21:12 momjian Exp $ + * $Id: nodeHashjoin.h,v 1.16 1999/10/13 15:02:26 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -14,6 +14,7 @@ #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); |