Commit 43c7114b authored by Bruce Momjian's avatar Bruce Momjian

Cleanup up include files.

parent 598e86f3
...@@ -6,15 +6,20 @@ ...@@ -6,15 +6,20 @@
* *
* Copyright (c) 1994, Regents of the University of California * 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 #ifndef VACUUM_H
#define VACUUM_H #define VACUUM_H
#include <access/funcindex.h> #include "access/funcindex.h"
#include <catalog/pg_index.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 typedef struct VAttListData
{ {
......
...@@ -6,13 +6,21 @@ ...@@ -6,13 +6,21 @@
* *
* Copyright (c) 1994, Regents of the University of California * 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 #ifndef NODEHASH_H
#define 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 TupleTableSlot *ExecHash(Hash *node);
extern bool ExecInitHash(Hash *node, EState *estate, Plan *parent); extern bool ExecInitHash(Hash *node, EState *estate, Plan *parent);
extern int ExecCountSlotsHash(Hash *node); extern int ExecCountSlotsHash(Hash *node);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment