Commit 4fa90e38 authored by Marc G. Fournier's avatar Marc G. Fournier

More cleanups

parent 466f5fd7
...@@ -4,14 +4,15 @@ ...@@ -4,14 +4,15 @@
# Makefile for access/index # Makefile for access/index
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/access/index/Makefile,v 1.2 1996/10/31 08:32:20 scrappy Exp $ # $Header: /cvsroot/pgsql/src/backend/access/index/Makefile,v 1.3 1996/11/05 10:02:01 scrappy Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
SRCDIR = ../../.. SRCDIR = ../../..
include ../../../Makefile.global include ../../../Makefile.global
INCLUDE_OPT = -I../../port/$(PORTNAME) \ INCLUDE_OPT = -I../.. \
-I../../port/$(PORTNAME) \
-I../../../include -I../../../include
CFLAGS+=$(INCLUDE_OPT) CFLAGS+=$(INCLUDE_OPT)
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.5 1996/11/03 12:35:02 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.6 1996/11/05 10:02:02 scrappy Exp $
* *
* NOTES * NOTES
* many of the old access method routines have been turned into * many of the old access method routines have been turned into
...@@ -44,26 +44,18 @@ ...@@ -44,26 +44,18 @@
* ---------------------------------------------------------------- * ----------------------------------------------------------------
*/ */
#include "postgres.h" #include <postgres.h>
#include "access/relscan.h" #include <utils/catcache.h>
#include "access/itup.h" #include <access/genam.h>
#include "access/sdir.h" #include <storage/bufmgr.h>
#include "utils/catcache.h"
#include "access/genam.h"
#include "utils/palloc.h"
#ifndef HAVE_MEMMOVE #ifndef HAVE_MEMMOVE
# include "regex/utils.h" # include <regex/utils.h>
#else #else
# include <string.h> # include <string.h>
#endif #endif
#include "storage/bufmgr.h"
/* ---------------------------------------------------------------- /* ----------------------------------------------------------------
* general access method routines * general access method routines
* *
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.6 1996/11/03 22:57:36 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.7 1996/11/05 10:02:03 scrappy Exp $
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
* index_open - open an index relation by relationId * index_open - open an index relation by relationId
...@@ -63,19 +63,13 @@ ...@@ -63,19 +63,13 @@
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include <postgres.h>
#include "access/genam.h" #include <access/genam.h>
#include <utils/relcache.h>
#include "utils/relcache.h" #include <fmgr.h>
#include <storage/lmgr.h>
#include "fmgr.h" #include <access/heaptuple.h>
#include "utils/palloc.h"
#include "storage/lmgr.h"
#include "access/heaptuple.h"
/* ---------------- /* ----------------
* undefine macros we aren't going to use that would otherwise * undefine macros we aren't going to use that would otherwise
......
...@@ -8,34 +8,23 @@ ...@@ -8,34 +8,23 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.6 1996/11/03 22:57:40 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.7 1996/11/05 10:02:06 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include <postgres.h>
#include "access/relscan.h" #include <catalog/pg_proc.h>
#include <catalog/pg_operator.h>
#include "catalog/pg_proc.h" #include <catalog/catname.h>
#include <catalog/pg_index.h>
#include "catalog/pg_operator.h" #include <catalog/pg_amop.h>
#include <catalog/pg_amproc.h>
#include "catalog/catname.h" #include <utils/memutils.h> /* could have been access/itup.h */
#include <access/heapam.h>
#include "catalog/pg_index.h" #include <access/istrat.h>
#include <fmgr.h>
#include "catalog/pg_amop.h"
#include "catalog/pg_amproc.h"
#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 * misc strategy support routines
......
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