]> granicus.if.org Git - postgresql/commitdiff
another directory cleaned of extraneous #includes
authorMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 09:40:25 +0000 (09:40 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 09:40:25 +0000 (09:40 +0000)
makefile fixed for fmgr.h

src/backend/access/hash/Makefile
src/backend/access/hash/hash.c
src/backend/access/hash/hashinsert.c
src/backend/access/hash/hashovfl.c
src/backend/access/hash/hashpage.c
src/backend/access/hash/hashscan.c
src/backend/access/hash/hashsearch.c
src/backend/access/hash/hashstrat.c
src/backend/access/hash/hashutil.c

index 79882ecb034782136222f6c9252f918e59106db7..923c8e5f3cd1370921ee75a8ac69f2d5633ffc8e 100644 (file)
@@ -4,14 +4,15 @@
 #    Makefile for access/hash
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/access/hash/Makefile,v 1.2 1996/10/31 08:24:36 scrappy Exp $
+#    $Header: /cvsroot/pgsql/src/backend/access/hash/Makefile,v 1.3 1996/11/05 09:40:16 scrappy Exp $
 #
 #-------------------------------------------------------------------------
 
 SRCDIR = ../../..
 include ../../../Makefile.global
 
-INCLUDE_OPT = -I../../port/$(PORTNAME) \
+INCLUDE_OPT = -I../.. \
+              -I../../port/$(PORTNAME) \
               -I../../../include
 
 CFLAGS+=$(INCLUDE_OPT)
index 37de0fad34ec1c3df36713850d0fa220043468a1..0ab47a5cd8c4a3ad0c9f0524efdada29e850580a 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.9 1996/11/03 12:34:33 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.10 1996/11/05 09:40:17 scrappy Exp $
  *
  * NOTES
  *    This file contains only the public interface routines.
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
 
-#include "access/relscan.h"
-#include "access/hash.h"
-
-#include "nodes/execnodes.h"
-
-#include "executor/executor.h"
-
-#include "access/heapam.h"
-
-#include "access/genam.h"
-
-#include "utils/palloc.h"
-
-#include "catalog/index.h"
+#include <access/hash.h>
+#include <executor/executor.h>
+#include <access/heapam.h>
+#include <access/genam.h>
+#include <catalog/index.h>
+#include <storage/bufmgr.h>
+#include <miscadmin.h>
 
 #ifndef HAVE_MEMMOVE
-# include "regex/utils.h"
+# include <regex/utils.h>
 #else
 # include <string.h>
 #endif
 
-#include "storage/bufmgr.h"
-
-#include "miscadmin.h"
-
 bool   BuildingHash = false;
 
 /*
index 6b2edf6320c585070f3d4c3e17dcefcff811d085..88e6acf056f91f6bead6be17a985e325f6ec156d 100644 (file)
@@ -7,24 +7,16 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.6 1996/11/03 12:34:35 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.7 1996/11/05 09:40:18 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 
-#include <stdio.h>
-#include <time.h>
-
-#include "postgres.h"
+#include <postgres.h>
  
-#include "access/relscan.h"
-#include "access/hash.h"
-
-#include "storage/bufmgr.h"
-
-#include "utils/palloc.h"
-
-#include "utils/memutils.h"
+#include <access/hash.h>
+#include <storage/bufmgr.h>
+#include <utils/memutils.h>
 
 static InsertIndexResult _hash_insertonpg(Relation rel, Buffer buf, int keysz, ScanKey scankey, HashItem hitem, Buffer metabuf);
 static OffsetNumber _hash_pgaddtup(Relation rel, Buffer buf, int keysz, ScanKey itup_scankey, Size itemsize, HashItem hitem);
index ad479be2f4c8228018361d1f005c406b249ca4d2..9f9bc42fbebad766e313bfade052ef7bd9986c55 100644 (file)
@@ -7,22 +7,21 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.7 1996/11/03 12:34:38 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.8 1996/11/05 09:40:20 scrappy Exp $
  *
  * NOTES
  *    Overflow pages look like ordinary relation pages.
  *
  *-------------------------------------------------------------------------
  */
-#include "postgres.h"
+#include <postgres.h>
  
-#include "access/relscan.h"
-#include "access/hash.h"
-#include "storage/bufmgr.h"
-#include "utils/memutils.h"
+#include <access/hash.h>
+#include <storage/bufmgr.h>
+#include <utils/memutils.h>
 
 #ifndef HAVE_MEMMOVE
-# include "regex/utils.h"
+# include <regex/utils.h>
 #else
 # include <string.h>
 #endif
index 276d7216a8320c7aec5043a7fee4a5e8e114a55c..b1421f62b388625f832875c7f42d6ae90a461184 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.6 1996/11/03 12:34:40 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.7 1996/11/05 09:40:21 scrappy Exp $
  *
  * NOTES
  *    Postgres hash pages look like ordinary relation pages.  The opaque
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
  
-#include "access/relscan.h"
-#include "access/hash.h"
-
-#include "storage/bufmgr.h"
-
-#include "miscadmin.h"
-
-#include "utils/memutils.h"
-
-#include "storage/lmgr.h"
-
-#include "access/genam.h"
+#include <access/hash.h>
+#include <storage/bufmgr.h>
+#include <miscadmin.h>
+#include <utils/memutils.h>
+#include <storage/lmgr.h>
+#include <access/genam.h>
 
 #ifndef HAVE_MEMMOVE
-# include "regex/utils.h"
+# include <regex/utils.h>
 #else
 # include <string.h>
 #endif
index 8bd14394e377373c1e1fab2c5ee61dec303ffab2..e9a188a71c474beb8f1c4024d107f6e543d49db1 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.6 1996/11/03 12:34:41 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.7 1996/11/05 09:40:22 scrappy Exp $
  *
  * NOTES
  *    Because we can be doing an index scan on a relation while we
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
  
-#include "access/relscan.h"
-#include "access/hash.h"
-#include "utils/palloc.h"
+#include <access/hash.h>
 
 static void _hash_scandel(IndexScanDesc scan, BlockNumber blkno, OffsetNumber offno);
 static bool _hash_scantouched(IndexScanDesc scan, BlockNumber blkno, OffsetNumber offno);
index 2dcda4dec6a16dc4167d4018f4422c19e947dd48..654e04be592139fb709513313f900ab76588f366 100644 (file)
@@ -7,17 +7,15 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.6 1996/11/03 12:34:42 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.7 1996/11/05 09:40:23 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
  
-#include "access/relscan.h"
-#include "access/hash.h"
-#include "utils/palloc.h"
-#include "storage/bufmgr.h"
+#include <access/hash.h>
+#include <storage/bufmgr.h>
 
 #ifndef HAVE_MEMMOVE
 # include "regex/utils.h"
index 9c0911e3a87b7c3c4da4e146d0b6e0ff60f0846d..d7f60d28697c24559549ef392c4c1585c03be8ce 100644 (file)
@@ -7,16 +7,15 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.6 1996/11/03 12:34:44 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.7 1996/11/05 09:40:24 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
  
-#include "access/relscan.h"
-#include "access/hash.h"
-#include "access/istrat.h"
+#include <access/hash.h>
+#include <access/istrat.h>
 
 /* 
  *  only one valid strategy for hash tables: equality. 
index f14c6c10f3cd13edbd3e348cadd5951f2f3aa754..f380c9df1a00e3ccfc3dd52281197714a0e8d440 100644 (file)
@@ -7,22 +7,20 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.6 1996/11/03 12:34:45 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.7 1996/11/05 09:40:25 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 
-#include "postgres.h"
+#include <postgres.h>
  
-#include "access/relscan.h"
-#include "access/hash.h"
-#include "utils/palloc.h"
-#include "fmgr.h"
-#include "utils/memutils.h"
-#include "access/iqual.h"
+#include <access/hash.h>
+#include <fmgr.h>
+#include <utils/memutils.h>
+#include <access/iqual.h>
 
 #ifndef HAVE_MEMMOVE
-# include "regex/utils.h"
+# include <regex/utils.h>
 #else
 # include <string.h>
 #endif