Commit b446f385 authored by Marc G. Fournier's avatar Marc G. Fournier

-Wall'd

parent ede7e6b0
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.4 1996/10/20 08:31:57 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.5 1996/10/21 05:59:44 scrappy Exp $
* *
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
...@@ -113,6 +113,38 @@ ...@@ -113,6 +113,38 @@
#include "access/valid.h" #include "access/valid.h"
#include "utils/relcache.h" #include "utils/relcache.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#else
# include <string.h>
#endif
#include <stdio.h>
#include "storage/ipc.h"
#include "storage/bufmgr.h"
#include "utils/palloc.h"
#include "access/hio.h"
#include "storage/spin.h"
#include "utils/hsearch.h"
#include "storage/shmem.h"
#include "storage/lock.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; static bool ImmediateInvalidation;
/* ---------------------------------------------------------------- /* ----------------------------------------------------------------
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Id: hio.c,v 1.4 1996/10/20 08:31:59 scrappy Exp $ * $Id: hio.c,v 1.5 1996/10/21 05:59:46 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -38,7 +38,6 @@ ...@@ -38,7 +38,6 @@
#include "storage/itemid.h" #include "storage/itemid.h"
#include "storage/item.h" #include "storage/item.h"
#include "storage/buf.h"
#include "storage/off.h" #include "storage/off.h"
#include "storage/bufpage.h" #include "storage/bufpage.h"
...@@ -47,8 +46,12 @@ ...@@ -47,8 +46,12 @@
#include "access/heapam.h" #include "access/heapam.h"
#include <stdio.h>
#include "storage/ipc.h"
#include "storage/bufmgr.h" #include "storage/bufmgr.h"
#include "utils/memutils.h"
/* /*
* amputunique - place tuple at tid * amputunique - place tuple at tid
* Currently on errors, calls elog. Perhaps should return -1? * Currently on errors, calls elog. Perhaps should return -1?
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.3 1996/10/20 08:32:01 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.4 1996/10/21 05:59:49 scrappy Exp $
* *
* NOTES * NOTES
* initam should be moved someplace else. * initam should be moved someplace else.
...@@ -47,6 +47,16 @@ ...@@ -47,6 +47,16 @@
#include "utils/mcxt.h" #include "utils/mcxt.h"
#include "utils/palloc.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#else
# include <string.h>
#endif
#include <stdio.h>
/* ---------------- /* ----------------
* InitHeapAccessStatistics * InitHeapAccessStatistics
* ---------------- * ----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment