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/utils/cache/lsyscache.c | |
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/utils/cache/lsyscache.c')
-rw-r--r-- | src/backend/utils/cache/lsyscache.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c index be590044418..286ebaefcd5 100644 --- a/src/backend/utils/cache/lsyscache.c +++ b/src/backend/utils/cache/lsyscache.c @@ -7,28 +7,19 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.27 1999/05/29 01:45:21 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.27.2.1 1999/08/02 05:25:00 scrappy Exp $ * * NOTES * Eventually, the index information should go through here, too. *------------------------------------------------------------------------- */ -#include <string.h> #include "postgres.h" -#include "nodes/pg_list.h" -#include "utils/syscache.h" -#include "utils/lsyscache.h" -#include "access/tupmacs.h" -#include "utils/rel.h" -#include "utils/palloc.h" -#include "utils/elog.h" -#include "access/attnum.h" -#include "access/heapam.h" - -#include "catalog/pg_amop.h" + #include "catalog/pg_operator.h" #include "catalog/pg_type.h" +#include "utils/lsyscache.h" +#include "utils/syscache.h" /* ---------- AMOP CACHES ---------- */ |