diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-26 01:26:13 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-26 01:26:13 +0000 |
commit | 43c7114b483ccc506e64f3e60a461ca900a8a1f5 (patch) | |
tree | f20ddf7cc9d9a4a0a0edc7d3ab4dd158602dd006 | |
parent | 598e86f3b30bfd343dfa5c3b9a310dbd91a96413 (diff) | |
download | postgresql-43c7114b483ccc506e64f3e60a461ca900a8a1f5.tar.gz postgresql-43c7114b483ccc506e64f3e60a461ca900a8a1f5.zip |
Cleanup up include files.
-rw-r--r-- | src/include/commands/vacuum.h | 11 | ||||
-rw-r--r-- | src/include/executor/nodeHash.h | 10 |
2 files changed, 17 insertions, 4 deletions
diff --git a/src/include/commands/vacuum.h b/src/include/commands/vacuum.h index 9068751d7eb..2f72f767e5b 100644 --- a/src/include/commands/vacuum.h +++ b/src/include/commands/vacuum.h @@ -6,15 +6,20 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: vacuum.h,v 1.10 1997/09/08 21:51:47 momjian Exp $ + * $Id: vacuum.h,v 1.11 1997/11/26 01:26:08 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef VACUUM_H #define VACUUM_H -#include <access/funcindex.h> -#include <catalog/pg_index.h> +#include "access/funcindex.h" +#include "catalog/pg_index.h" +#include "catalog/pg_attribute.h" +#include "nodes/pg_list.h" +#include "storage/block.h" +#include "storage/off.h" + typedef struct VAttListData { diff --git a/src/include/executor/nodeHash.h b/src/include/executor/nodeHash.h index 2348e99d97d..eb31c5b0a13 100644 --- a/src/include/executor/nodeHash.h +++ b/src/include/executor/nodeHash.h @@ -6,13 +6,21 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeHash.h,v 1.5 1997/09/08 21:52:04 momjian Exp $ + * $Id: nodeHash.h,v 1.6 1997/11/26 01:26:13 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef NODEHASH_H #define NODEHASH_H +#include "executor/hashjoin.h" +#include "executor/tuptable.h" +#include "nodes/execnodes.h" +#include "nodes/pg_list.h" +#include "nodes/plannodes.h" +#include "storage/fd.h" +#include "utils/syscache.h" + extern TupleTableSlot *ExecHash(Hash *node); extern bool ExecInitHash(Hash *node, EState *estate, Plan *parent); extern int ExecCountSlotsHash(Hash *node); |