diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 09:53:03 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 09:53:03 +0000 |
commit | 466f5fd72907dd001243cac047d53321cf25efcc (patch) | |
tree | c9f60cfc58a0d8daf51df6e68c4cf2b02861390c /src | |
parent | 4312192e6b773a0ec5de71ce430e1ae56ea9f4eb (diff) | |
download | postgresql-466f5fd72907dd001243cac047d53321cf25efcc.tar.gz postgresql-466f5fd72907dd001243cac047d53321cf25efcc.zip |
More cleanups
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/heapam.c | 48 | ||||
-rw-r--r-- | src/backend/access/heap/hio.c | 13 | ||||
-rw-r--r-- | src/backend/access/heap/stats.c | 19 |
3 files changed, 27 insertions, 53 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 28df1af592e..a98cb2e1770 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.7 1996/11/03 12:34:50 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.8 1996/11/05 09:53:01 scrappy Exp $ * * * INTERFACE ROUTINES @@ -73,45 +73,29 @@ *------------------------------------------------------------------------- */ -#include "postgres.h" +#include <postgres.h> -#include "access/relscan.h" -#include "storage/bufpage.h" +#include <storage/bufpage.h> +#include <access/heapam.h> +#include <miscadmin.h> +#include <utils/relcache.h> +#include <access/valid.h> +#include <access/hio.h> +#include <storage/lmgr.h> +#include <storage/smgr.h> +#include <catalog/catalog.h> +#include <access/transam.h> +#include <access/xact.h> +#include <utils/inval.h> +#include <utils/memutils.h> -#include "access/heapam.h" - -#include "miscadmin.h" - -#include "utils/relcache.h" #ifndef HAVE_MEMMOVE -# include "regex/utils.h" +# include <regex/utils.h> #else # include <string.h> #endif -#include "access/valid.h" - -#include "storage/bufmgr.h" - -#include "utils/palloc.h" - -#include "access/hio.h" - -#include "storage/lmgr.h" - -#include "storage/smgr.h" - -#include "catalog/catalog.h" - -#include "access/transam.h" - -#include "access/xact.h" - -#include "utils/inval.h" - -#include "utils/memutils.h" - static bool ImmediateInvalidation; /* ---------------------------------------------------------------- diff --git a/src/backend/access/heap/hio.c b/src/backend/access/heap/hio.c index f5b5ab0975f..f172a404708 100644 --- a/src/backend/access/heap/hio.c +++ b/src/backend/access/heap/hio.c @@ -7,18 +7,17 @@ * * * IDENTIFICATION - * $Id: hio.c,v 1.8 1996/11/03 22:57:28 scrappy Exp $ + * $Id: hio.c,v 1.9 1996/11/05 09:53:02 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include "postgres.h" +#include <postgres.h> -#include "storage/bufpage.h" -#include "access/relscan.h" -#include "access/heapam.h" -#include "storage/bufmgr.h" -#include "utils/memutils.h" +#include <storage/bufpage.h> +#include <access/heapam.h> +#include <storage/bufmgr.h> +#include <utils/memutils.h> /* * amputunique - place tuple at tid diff --git a/src/backend/access/heap/stats.c b/src/backend/access/heap/stats.c index 7f395590699..c3bf34006e6 100644 --- a/src/backend/access/heap/stats.c +++ b/src/backend/access/heap/stats.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.6 1996/11/03 12:34:55 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.7 1996/11/05 09:53:03 scrappy Exp $ * * NOTES * initam should be moved someplace else. @@ -15,22 +15,13 @@ *------------------------------------------------------------------------- */ -#include <stdio.h> +#include <postgres.h> -#include "postgres.h" - -#include "access/relscan.h" - -#include "access/heapam.h" - -#include "nodes/memnodes.h" - -#include "utils/mcxt.h" - -#include "utils/palloc.h" +#include <access/heapam.h> +#include <utils/mcxt.h> #ifndef HAVE_MEMMOVE -# include "regex/utils.h" +# include <regex/utils.h> #else # include <string.h> #endif |