]> granicus.if.org Git - postgresql/commitdiff
More cleans of the inter-dependencies in the #include files
authorMarc G. Fournier <scrappy@hub.org>
Sun, 3 Nov 1996 12:13:35 +0000 (12:13 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sun, 3 Nov 1996 12:13:35 +0000 (12:13 +0000)
17 files changed:
src/include/access/genam.h
src/include/access/gist.h
src/include/access/gistscan.h
src/include/catalog/index.h
src/include/catalog/pg_proc.h
src/include/executor/executor.h
src/include/executor/tuptable.h
src/include/nodes/execnodes.h
src/include/nodes/nodes.h
src/include/nodes/parsenodes.h
src/include/nodes/plannodes.h
src/include/nodes/primnodes.h
src/include/parser/catalog_utils.h
src/include/storage/bufmgr.h
src/include/tcop/dest.h
src/include/utils/builtins.h
src/include/utils/memutils.h

index b23533cbe36d7eaed2f175b1a77cf472a1d1fbff..ea8121999306a1d97dae9915d38ce2bb3bfe3dbc 100644 (file)
@@ -6,20 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: genam.h,v 1.2 1996/10/31 09:46:37 scrappy Exp $
+ * $Id: genam.h,v 1.3 1996/11/03 12:12:22 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        GENAM_H
 #define GENAM_H
 
-
-#include "access/attnum.h"
-#include "access/htup.h"
-#include "access/istrat.h"
 #include "access/itup.h"
 #include "access/relscan.h"
-#include "access/skey.h"
 #include "access/sdir.h"
 #include "access/funcindex.h"
 
index 4befdd8ae9331d47d3ce87282ddfb520cf862727..38ef591d46dced8a757b0aacda9cbae2972bb287 100644 (file)
 #ifndef GIST_H
 #define GIST_H
 
-#include "utils/rel.h"
 #include "storage/off.h"
+#include "utils/rel.h"
 #include "storage/block.h"
-#include "storage/bufpage.h"
-#include "access/skey.h"
+#include "storage/page.h"
 
 /* 
 ** You can have as many strategies as you please in GiSTs, as
index 5fa7abbcc4827729d5a13ab9992ee7f5ed364be3..3eb1eba6258062cfb99557295a73921675d1dffe 100644 (file)
  */
 #ifndef GISTSCAN_H
 
+#include "utils/rel.h"
+#include "storage/block.h"
+#include "storage/off.h"
+
 void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
 
 #endif /* GISTSCAN_H */
index f59af4f0ecac68cfe09377d59f075f8b7056ca82..82e7f09e8e21af8065af08393498effdf1044e65 100644 (file)
@@ -6,18 +6,18 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: index.h,v 1.1 1996/08/28 01:56:27 scrappy Exp $
+ * $Id: index.h,v 1.2 1996/11/03 12:12:28 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        INDEX_H 
 #define INDEX_H
 
-#include "access/funcindex.h"
-#include "access/itup.h"
 #include "nodes/execnodes.h"
+#include "access/htup.h"
+#include "access/itup.h"
 #include "nodes/parsenodes.h"
-
+#include "storage/buf.h"
 
 extern Form_pg_am
 AccessMethodObjectIdGetAccessMethodTupleForm(Oid accessMethodObjectId);
index 034fd26143448460ee107e53aa150efd18accba5..114b33422264da6d75017337d8ade154391c018a 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_proc.h,v 1.2 1996/10/31 09:47:52 scrappy Exp $
+ * $Id: pg_proc.h,v 1.3 1996/11/03 12:12:32 scrappy Exp $
  *
  * NOTES
  *    The script catalog/genbki.sh reads this file and generates .bki
@@ -754,9 +754,6 @@ DATA(insert OID =  1239 (  texticregexne       PGUID 11 f t f 2 f 16 "25 25" 100
 DATA(insert OID =  1240 (  nameicregexeq     PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
 DATA(insert OID =  1241 (  nameicregexne     PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100  foo bar ));
 
-
-#include "nodes/pg_list.h"
-
 /* 
  * prototypes for functions pg_proc.c 
  */
index c849a06616c5b8692b33f0af1ecc1199b20572ae..b91d857f93e72fd6b5309ba65c5e8c66ca900db2 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: executor.h,v 1.2 1996/10/31 09:48:30 scrappy Exp $
+ * $Id: executor.h,v 1.3 1996/11/03 12:12:39 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
  *     #includes
  * ----------------------------------------------------------------
  */
-#include <stdio.h>
-#include <string.h>
-
-#include "nodes/pg_list.h"
 
-/* ----------------
- * executor debugging definitions are kept in a separate file
- * so people can customize what debugging they want to see and not
- * have this information clobbered every time a new version of
- * executor.h is checked in -cim 10/26/89
- * ----------------
- */
-#include "executor/execdebug.h"
+#include <stdio.h>
 
-#include "access/heapam.h"
-#include "access/htup.h"
-#include "access/istrat.h"
 #include "access/itup.h"
+#include "access/relscan.h"
 #include "access/skey.h"
-#include "utils/tqual.h"
-#include "catalog/catname.h"
-#include "utils/syscache.h"
-#include "executor/execdefs.h"
-#include "executor/tuptable.h"
-
-#include "nodes/parsenodes.h"
-
-#include "storage/buf.h"
-#include "miscadmin.h"
-#include "fmgr.h"
-#include "utils/elog.h"
-#include "utils/mcxt.h"
-#include "utils/memutils.h"
-#include "utils/rel.h"
-
+#include "access/sdir.h"
 #include "catalog/pg_index.h"
-#include "catalog/pg_proc.h"
-#include "catalog/pg_type.h"
-#include "catalog/pg_aggregate.h"
-
-#include "access/printtup.h"
-#include "nodes/primnodes.h"
-#include "nodes/plannodes.h"
-#include "nodes/execnodes.h"
-
-#include "tcop/dest.h"
-#include "storage/smgr.h"
-
-#include "access/genam.h"
 #include "executor/execdesc.h"
 
+#ifndef HAVE_MEMMOVE
+# include "regex/utils.h"
+#else
+# include <string.h>
+#endif
+
 /*
  * prototypes from functions in execAmi.c
  */
index 013464568911ef00676ea5b01c5e1daf9b1125e7..e9596739e4d298a4dd90661b1bc1fccb1e16694d 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: tuptable.h,v 1.2 1996/10/23 07:41:36 scrappy Exp $
+ * $Id: tuptable.h,v 1.3 1996/11/03 12:12:42 scrappy Exp $
  *
  * NOTES
  *    The tuple table interface is getting pretty ugly.
@@ -18,7 +18,7 @@
 #define TUPTABLE_H
 
 #include "access/htup.h"
-#include "access/relscan.h"
+#include "storage/buf.h"
 
 /* ----------------
  *     Note:  the executor tuple table is managed and manipulated by special
index 63cbe32b4669fed71faa95af4779dee0bac89844..7cd8593172e73f4f05527fecbba3d14aca8d2f69 100644 (file)
@@ -6,20 +6,21 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: execnodes.h,v 1.4 1996/10/23 07:41:56 scrappy Exp $
+ * $Id: execnodes.h,v 1.5 1996/11/03 12:12:50 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef EXECNODES_H
 #define EXECNODES_H
 
-#include "nodes/params.h"
-#include "access/sdir.h"
-#include "access/funcindex.h"
 #include "executor/hashjoin.h"
 #include "nodes/primnodes.h"
-#include "nodes/memnodes.h"
+#include "access/funcindex.h"
+#include "access/relscan.h"
 #include "executor/tuptable.h"
+#include "nodes/params.h"
+#include "access/sdir.h"
+#include "nodes/memnodes.h"
 
 /* ----------------
  *    IndexInfo information
index 6c6d48ae8c46dc292e880b89942e58e36b59c1a1..992933c59f5e2bf9dff06a5dfc98c7cd68dc03d7 100644 (file)
@@ -6,14 +6,13 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: nodes.h,v 1.2 1996/10/31 09:49:10 scrappy Exp $
+ * $Id: nodes.h,v 1.3 1996/11/03 12:12:52 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef NODES_H
 #define        NODES_H
 
-
 /*
  * The first field of every node is NodeTag. Each node created (with makeNode)
  * will have one of the following tags as the value of its first field.
index 61e20dc2be99cba3094a8ed232ba66f3ef6ae72e..b46a77ebe3436353fb7047006288e3ac66bfb1e5 100644 (file)
@@ -6,15 +6,15 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: parsenodes.h,v 1.4 1996/10/30 02:02:08 momjian Exp $
+ * $Id: parsenodes.h,v 1.5 1996/11/03 12:12:55 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        PARSENODES_H
 #define        PARSENODES_H
 
-#include "nodes/primnodes.h"
-#include "utils/tqual.h"
+#include "utils/tqual.h" 
+#include "nodes/primnodes.h" 
 
 /*****************************************************************************
  *  Query Tree 
index b431a45b79ab6987127fea64bb8670d1f95183a9..856a4ef4c6d757f88022bb6a62243680b63949e6 100644 (file)
@@ -6,16 +6,13 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: plannodes.h,v 1.2 1996/10/31 09:49:16 scrappy Exp $
+ * $Id: plannodes.h,v 1.3 1996/11/03 12:12:57 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef PLANNODES_H
 #define        PLANNODES_H
 
-
-#include "nodes/nodes.h"
-#include "nodes/pg_list.h"
 #include "nodes/primnodes.h"
 
 /* ----------------------------------------------------------------
index cbdb723d06f06c52301249db6dc86f143b9b55a0..41e98fbb5d81f844f575ebe837c8aa2877ea571f 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: primnodes.h,v 1.4 1996/10/23 07:42:02 scrappy Exp $
+ * $Id: primnodes.h,v 1.5 1996/11/03 12:12:58 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -14,9 +14,7 @@
 #define        PRIMNODES_H
 
 #include "nodes/pg_list.h"
-#include "nodes/nodes.h"
 #include "access/attnum.h"
-
 #include "utils/fcache.h"
 
 /* ----------------------------------------------------------------
index 8fed6eb8b8cbb88bb942f4881080e1a26d088d8d..f6e479ab4f4cb3c0052dc9d6dd154e697b0d9344 100644 (file)
@@ -6,17 +6,13 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: catalog_utils.h,v 1.2 1996/10/31 09:49:33 scrappy Exp $
+ * $Id: catalog_utils.h,v 1.3 1996/11/03 12:13:03 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef        CATALOG_UTILS_H
 #define        CATALOG_UTILS_H
 
-
-
-#include "access/htup.h"
-#include "utils/rel.h"
 #include "catalog/pg_proc.h"
 #include "catalog/pg_type.h"
 #include "utils/syscache.h"
index 3d72f1f503700070cd050682b2366228db1f3bb4..e1b397a2a3d0f25ebd813cffdd8429f07a65b1f7 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: bufmgr.h,v 1.5 1996/11/01 09:31:05 scrappy Exp $
+ * $Id: bufmgr.h,v 1.6 1996/11/03 12:13:10 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #define BUFMGR_H
 
 #include <stdio.h>
-
-#include "storage/ipc.h"
+#include "storage/block.h"
 #include "storage/buf.h"
+#include "storage/ipc.h"
 #include "utils/rel.h"
-#include "storage/block.h"
 
 /*
  * the maximum size of a disk block for any possible installation.
index 9acdff5670f5fbeb50a852d5f545885cdb5f04fa..740d23c2b6a2291eca9e0a33b0609db3c533ee26 100644 (file)
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: dest.h,v 1.1 1996/08/28 07:27:49 scrappy Exp $
+ * $Id: dest.h,v 1.2 1996/11/03 12:13:19 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #ifndef DEST_H
 #define DEST_H
 
-#include "catalog/pg_attribute.h"
-#include "access/tupdesc.h"
+#include "access/tupdesc.h" 
 
 /* ----------------
  *     CommandDest is used to allow the results of calling
index d5a61cfaed22e7998389a25192e409a7805770b7..055aa453064a8cda277e616a234c4013753297b0 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: builtins.h,v 1.2 1996/10/31 09:51:07 scrappy Exp $
+ * $Id: builtins.h,v 1.3 1996/11/03 12:13:34 scrappy Exp $
  *
  * NOTES
  *    This should normally only be included by fmgr.h.
 #ifndef BUILTINS_H
 #define BUILTINS_H
 
-
 #include "storage/itemptr.h"
-
-#include "storage/large_object.h"
-
-#include "utils/geo-decls.h"
+#include "utils/nabstime.h"
+#include "utils/geo-decls.h" 
+#include "utils/rel.h"
 
 /*
  *     Defined in adt/
index bcac77fb1bca052f85a13f6365fd4ce2c7e6ad6e..be5ef43eac55d52c1bc637a5b4acf79992ff1229 100644 (file)
@@ -15,7 +15,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: memutils.h,v 1.2 1996/10/31 09:51:27 scrappy Exp $
+ * $Id: memutils.h,v 1.3 1996/11/03 12:13:35 scrappy Exp $
  *
  * NOTES
  *    some of the information in this file will be moved to
@@ -81,11 +81,6 @@ s...)
 #define MAXALIGN(LEN)\
        (((long)(LEN) + (sizeof (double) - 1)) & ~(sizeof (double) -1))
 
-/*****************************************************************************
- *    bit.h                                                                  *
- *****************************************************************************/
-#include "utils/bit.h"
-
 /*****************************************************************************
  *    oset.h --        Fixed format ordered set definitions.                *
  *****************************************************************************/
@@ -95,8 +90,6 @@ s...)
  *     XXX semantics of the external definitions.  Otherwise, the
  *     XXX functional interface should not change.
  *
- * Identification:
- *     $Header: /cvsroot/pgsql/src/include/utils/memutils.h,v 1.2 1996/10/31 09:51:27 scrappy Exp $
  */
 
 typedef struct OrderedElemData OrderedElemData;
@@ -244,9 +237,6 @@ extern void AllocSetDump(AllocSet set);
  *     This file is OPERATING SYSTEM dependent!!!
  *
  */
-/* #include <memory.h> */
-/* use <string.h> because it's ANSI */
-#include <string.h>
 
 /* 
  *     LibCCopyLength is only used within this file. -cim 6/12/90