diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
commit | 9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (patch) | |
tree | c97d5f26e89cc9d33c5be420a5e7688835644c77 /src/backend/access/index | |
parent | 62d146bdcd784280b573acd8af52488e66e212cf (diff) |
Another 'mega-commit' of back-patches ...
- integrating the #include file cleanup that Bruce recently did
- got the CPU change to adt/Makefile
- changing DOUBLEALIGN -> MAXALIGN
Diffstat (limited to 'src/backend/access/index')
-rw-r--r-- | src/backend/access/index/genam.c | 14 | ||||
-rw-r--r-- | src/backend/access/index/istrat.c | 6 |
2 files changed, 5 insertions, 15 deletions
diff --git a/src/backend/access/index/genam.c b/src/backend/access/index/genam.c index 70b9ae2a4b0..ebc7f074e62 100644 --- a/src/backend/access/index/genam.c +++ b/src/backend/access/index/genam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.17 1999/05/25 16:07:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.17.2.1 1999/08/02 05:24:38 scrappy Exp $ * * NOTES * many of the old access method routines have been turned into @@ -44,17 +44,9 @@ * ---------------------------------------------------------------- */ -#include <postgres.h> +#include "postgres.h" +#include "access/genam.h" -#include <utils/catcache.h> -#include <access/genam.h> -#include <storage/bufmgr.h> - -#ifndef HAVE_MEMMOVE -#include <regex/utils.h> -#else -#include <string.h> -#endif /* ---------------------------------------------------------------- * general access method routines diff --git a/src/backend/access/index/istrat.c b/src/backend/access/index/istrat.c index 268df6946e5..fa27bbef79e 100644 --- a/src/backend/access/index/istrat.c +++ b/src/backend/access/index/istrat.c @@ -8,14 +8,13 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.33 1999/06/19 04:54:10 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.33.2.1 1999/08/02 05:24:39 scrappy Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" -#include "miscadmin.h" #include "access/heapam.h" #include "access/istrat.h" #include "catalog/catname.h" @@ -23,9 +22,8 @@ #include "catalog/pg_amproc.h" #include "catalog/pg_index.h" #include "catalog/pg_operator.h" +#include "miscadmin.h" #include "utils/syscache.h" -#include "fmgr.h" -#include "utils/memutils.h" /* could have been access/itup.h */ #ifdef USE_ASSERT_CHECKING static bool StrategyEvaluationIsValid(StrategyEvaluation evaluation); |