diff options
| author | Bruce Momjian | 2011-08-27 15:05:33 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2011-08-27 15:05:33 +0000 |
| commit | 4bd7333b14786a2d757195e907709d2aee116809 (patch) | |
| tree | d8c8cff1356085924bd38ae13221942d4f6c0c7f /src/include/access | |
| parent | d010391ac8f706e17998671534ca1230f68d2f38 (diff) | |
Allow more include files to be compiled in their own by adding missing
include dependencies.
Modify pgcompinclude to skip a common fcinfo error.
Diffstat (limited to 'src/include/access')
| -rw-r--r-- | src/include/access/gin_private.h | 1 | ||||
| -rw-r--r-- | src/include/access/hash.h | 1 | ||||
| -rw-r--r-- | src/include/access/htup.h | 1 | ||||
| -rw-r--r-- | src/include/access/nbtree.h | 2 | ||||
| -rw-r--r-- | src/include/access/xlog.h | 2 |
5 files changed, 5 insertions, 2 deletions
diff --git a/src/include/access/gin_private.h b/src/include/access/gin_private.h index a79c003a9f1..290f0edaefa 100644 --- a/src/include/access/gin_private.h +++ b/src/include/access/gin_private.h @@ -14,6 +14,7 @@ #include "access/gin.h" #include "access/itup.h" #include "fmgr.h" +#include "storage/bufmgr.h" #include "utils/rbtree.h" diff --git a/src/include/access/hash.h b/src/include/access/hash.h index 13ff37ab0b0..d9a23aed840 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.h @@ -22,6 +22,7 @@ #include "access/sdir.h" #include "access/xlog.h" #include "fmgr.h" +#include "storage/bufmgr.h" #include "storage/lock.h" #include "utils/relcache.h" diff --git a/src/include/access/htup.h b/src/include/access/htup.h index ba5d9b28ef1..c0258354e6f 100644 --- a/src/include/access/htup.h +++ b/src/include/access/htup.h @@ -16,6 +16,7 @@ #include "access/tupdesc.h" #include "access/tupmacs.h" +#include "storage/bufpage.h" #include "storage/itemptr.h" #include "storage/relfilenode.h" diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h index b62e42cfde1..4e20c79ca6e 100644 --- a/src/include/access/nbtree.h +++ b/src/include/access/nbtree.h @@ -19,7 +19,7 @@ #include "access/sdir.h" #include "access/xlog.h" #include "access/xlogutils.h" - +#include "catalog/pg_index.h" /* There's room for a 16-bit vacuum cycle ID in BTPageOpaqueData */ typedef uint16 BTCycleId; diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index cdbf63fa76e..1fd60fb98d7 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -14,11 +14,11 @@ #include "access/rmgr.h" #include "access/xlogdefs.h" #include "lib/stringinfo.h" +#include "replication/walsender.h" #include "storage/buf.h" #include "utils/pg_crc.h" #include "utils/timestamp.h" - /* * The overall layout of an XLOG record is: * Fixed-size header (XLogRecord struct) |
