mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
-Wall'd ... I missed a subdir under access :(
This commit is contained in:
parent
f47ffc9a4e
commit
8385d557d1
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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
|
* NOTES
|
||||||
* many of the old access method routines have been turned into
|
* many of the old access method routines have been turned into
|
||||||
@ -81,6 +81,18 @@
|
|||||||
#include "access/funcindex.h"
|
#include "access/funcindex.h"
|
||||||
#include "access/genam.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
|
* general access method routines
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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
|
* INTERFACE ROUTINES
|
||||||
* index_open - open an index relation by relationId
|
* index_open - open an index relation by relationId
|
||||||
@ -97,6 +97,19 @@
|
|||||||
|
|
||||||
#include "utils/relcache.h"
|
#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
|
* 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
|
* get in our way.. delete is defined in c.h and the am's are
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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 $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -54,6 +54,11 @@
|
|||||||
#include "utils/memutils.h" /* could have been access/itup.h */
|
#include "utils/memutils.h" /* could have been access/itup.h */
|
||||||
|
|
||||||
#include "access/heapam.h"
|
#include "access/heapam.h"
|
||||||
|
|
||||||
|
#include "access/istrat.h"
|
||||||
|
|
||||||
|
#include "fmgr.h"
|
||||||
|
|
||||||
/* ----------------------------------------------------------------
|
/* ----------------------------------------------------------------
|
||||||
* misc strategy support routines
|
* misc strategy support routines
|
||||||
* ----------------------------------------------------------------
|
* ----------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user