OSDN Git Service

-Wall'd ... I missed a subdir under access :(
authorMarc G. Fournier <scrappy@hub.org>
Mon, 21 Oct 1996 07:38:20 +0000 (07:38 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Mon, 21 Oct 1996 07:38:20 +0000 (07:38 +0000)
src/backend/access/index/genam.c
src/backend/access/index/indexam.c
src/backend/access/index/istrat.c

index e957428..c3abfd9 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.2 1996/10/20 09:27:21 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.3 1996/10/21 07:38:17 scrappy Exp $
  *
  * NOTES
  *    many of the old access method routines have been turned into
 #include "access/funcindex.h"
 #include "access/genam.h"
 
+#include "utils/palloc.h"
+
+#ifndef HAVE_MEMMOVE
+# include "regex/utils.h"
+#else
+# include <string.h>
+#endif
+
+#include <stdio.h>
+#include "storage/ipc.h"
+#include "storage/bufmgr.h"
+
 /* ----------------------------------------------------------------
  *     general access method routines
  *
index 7a01884..c0348a5 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.3 1996/10/20 09:27:22 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.4 1996/10/21 07:38:19 scrappy Exp $
  *
  * INTERFACE ROUTINES
  *     index_open      - open an index relation by relationId
 
 #include "utils/relcache.h"
 
+#include "fmgr.h"
+
+#include "utils/palloc.h"
+
+#include "storage/ipc.h"
+#include "storage/spin.h"
+#include "utils/hsearch.h"
+#include "storage/shmem.h"
+#include "storage/lock.h"
+#include "storage/lmgr.h"
+
+#include "access/heaptuple.h"
+
 /* ----------------
  *   undefine macros we aren't going to use that would otherwise
  *   get in our way..  delete is defined in c.h and the am's are
index e34fe22..7c7550c 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.2 1996/10/20 09:27:24 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.3 1996/10/21 07:38:20 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include "utils/memutils.h" /* could have been access/itup.h */
 
 #include "access/heapam.h"
+
+#include "access/istrat.h"
+
+#include "fmgr.h"
+
 /* ----------------------------------------------------------------
  *                misc strategy support routines
  * ----------------------------------------------------------------