diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-21 07:38:20 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-21 07:38:20 +0000 |
commit | 8385d557d1d72c2a6d4823f334a7e32b07709255 (patch) | |
tree | d480a2205d22fe40f8d8790943a2d2da2eccc3e3 /src/backend/access/index/indexam.c | |
parent | f47ffc9a4e00169072d5ac8208d5625a9d8da3d0 (diff) |
-Wall'd ... I missed a subdir under access :(
Diffstat (limited to 'src/backend/access/index/indexam.c')
-rw-r--r-- | src/backend/access/index/indexam.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/backend/access/index/indexam.c b/src/backend/access/index/indexam.c index 7a01884850f..c0348a5f39a 100644 --- a/src/backend/access/index/indexam.c +++ b/src/backend/access/index/indexam.c @@ -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 @@ -97,6 +97,19 @@ #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 |