aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/inval.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1999-08-02 05:25:27 +0000
committerMarc G. Fournier <scrappy@hub.org>1999-08-02 05:25:27 +0000
commit9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (patch)
treec97d5f26e89cc9d33c5be420a5e7688835644c77 /src/backend/utils/cache/inval.c
parent62d146bdcd784280b573acd8af52488e66e212cf (diff)
downloadpostgresql-9a8aeb23a19ee6833480d4c12719d9fd26ad8571.tar.gz
postgresql-9a8aeb23a19ee6833480d4c12719d9fd26ad8571.zip
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/inval.c')
-rw-r--r--src/backend/utils/cache/inval.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/backend/utils/cache/inval.c b/src/backend/utils/cache/inval.c
index 7cf66e22808..134c0dbb8a8 100644
--- a/src/backend/utils/cache/inval.c
+++ b/src/backend/utils/cache/inval.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/inval.c,v 1.23 1999/05/25 16:12:23 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/inval.c,v 1.23.2.1 1999/08/02 05:25:00 scrappy Exp $
*
* Note - this code is real crufty...
*
@@ -15,22 +15,14 @@
*/
#include "postgres.h"
-#include <miscadmin.h>
-
-#include "access/heapam.h" /* XXX to support hacks below */
-#include "access/htup.h"
#include "catalog/catalog.h"
+#include "catalog/catname.h"
#include "catalog/heap.h"
-#include "storage/bufpage.h"
-#include "storage/buf.h" /* XXX for InvalidBuffer */
-#include "storage/ipc.h"
+#include "miscadmin.h"
#include "storage/sinval.h"
#include "utils/catcache.h"
#include "utils/inval.h"
-#include "utils/rel.h"
#include "utils/relcache.h"
-#include "catalog/catname.h" /* XXX to support hacks below */
-#include "utils/syscache.h" /* XXX to support the hacks below */
static InvalidationEntry InvalidationEntryAllocate(uint16 size);
static void LocalInvalidInvalidate(LocalInvalid invalid, void (*function) ());