another pass through.

Note.  all include files that have been hit so far have had extraneous
       include files cleaned out and are reduced to...the lowest common
       "include file", based on 'cc -Wall -I. test.c', where test.c is:

#include "postgres.h"
#include "<top of branches>" (ie. top of branches this time was utils/fcache2.h)
This commit is contained in:
Marc G. Fournier 1996-11-04 08:53:07 +00:00
parent 63482946c7
commit 434201d8d7
6 changed files with 24 additions and 21 deletions

View File

@ -6,16 +6,16 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: relscan.h,v 1.4 1996/11/03 08:17:22 scrappy Exp $ * $Id: relscan.h,v 1.5 1996/11/04 08:52:41 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef RELSCAN_H #ifndef RELSCAN_H
#define RELSCAN_H #define RELSCAN_H
#include "utils/rel.h" #include <utils/tqual.h>
#include "utils/tqual.h" #include <storage/buf.h>
#include "storage/buf.h" #include <utils/rel.h>
typedef ItemPointerData MarkData; typedef ItemPointerData MarkData;

View File

@ -6,14 +6,14 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: hashjoin.h,v 1.2 1996/10/19 06:27:33 scrappy Exp $ * $Id: hashjoin.h,v 1.3 1996/11/04 08:52:46 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef HASHJOIN_H #ifndef HASHJOIN_H
#define HASHJOIN_H #define HASHJOIN_H
#include "storage/ipc.h" #include <storage/ipc.h>
/* ----------------- /* -----------------
* have to use relative address as pointers in the hashtable * have to use relative address as pointers in the hashtable

View File

@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: tuptable.h,v 1.3 1996/11/03 12:12:42 scrappy Exp $ * $Id: tuptable.h,v 1.4 1996/11/04 08:52:47 scrappy Exp $
* *
* NOTES * NOTES
* The tuple table interface is getting pretty ugly. * The tuple table interface is getting pretty ugly.
@ -17,8 +17,9 @@
#ifndef TUPTABLE_H #ifndef TUPTABLE_H
#define TUPTABLE_H #define TUPTABLE_H
#include "access/htup.h" #include <storage/buf.h>
#include "storage/buf.h" #include <access/tupdesc.h>
#include <access/htup.h>
/* ---------------- /* ----------------
* Note: the executor tuple table is managed and manipulated by special * Note: the executor tuple table is managed and manipulated by special

View File

@ -6,21 +6,21 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: execnodes.h,v 1.5 1996/11/03 12:12:50 scrappy Exp $ * $Id: execnodes.h,v 1.6 1996/11/04 08:52:54 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef EXECNODES_H #ifndef EXECNODES_H
#define EXECNODES_H #define EXECNODES_H
#include "executor/hashjoin.h" #include <nodes/memnodes.h>
#include "nodes/primnodes.h" #include <nodes/primnodes.h>
#include "access/funcindex.h" #include <executor/hashjoin.h>
#include "access/relscan.h" #include <access/relscan.h>
#include "executor/tuptable.h" #include <access/sdir.h>
#include "nodes/params.h" #include <nodes/params.h>
#include "access/sdir.h" #include <executor/tuptable.h>
#include "nodes/memnodes.h" #include <access/funcindex.h>
/* ---------------- /* ----------------
* IndexInfo information * IndexInfo information

View File

@ -6,14 +6,14 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: params.h,v 1.2 1996/10/31 09:49:13 scrappy Exp $ * $Id: params.h,v 1.3 1996/11/04 08:52:57 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef PARAMS_H #ifndef PARAMS_H
#define PARAMS_H #define PARAMS_H
#include "access/attnum.h" #include <access/attnum.h>
/* ---------------------------------------------------------------- /* ----------------------------------------------------------------
* *

View File

@ -6,13 +6,15 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: fcache2.h,v 1.1 1996/08/28 01:58:58 scrappy Exp $ * $Id: fcache2.h,v 1.2 1996/11/04 08:53:07 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef FCACHE2_H #ifndef FCACHE2_H
#define FCACHE2_H #define FCACHE2_H
#include <nodes/execnodes.h>
extern void extern void
setFcache(Node *node, Oid foid, List *argList, ExprContext *econtext); setFcache(Node *node, Oid foid, List *argList, ExprContext *econtext);