diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2008-06-08 23:16:43 +0000 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2008-06-08 23:16:43 +0000 |
commit | 7f15f8f2e7a868839fd6b702028aa9d098cf5d75 (patch) | |
tree | 423509e109761b34a0ab401c856534b70dad630e | |
parent | 281a724d5cb8a5fea2f42e80575a768f5879b35c (diff) | |
download | postgresql-7f15f8f2e7a868839fd6b702028aa9d098cf5d75.tar.gz postgresql-7f15f8f2e7a868839fd6b702028aa9d098cf5d75.zip |
Fix breakage caused by conflicting patches, as evidenced by the buildfarm.
-rw-r--r-- | src/backend/access/index/genam.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/access/index/genam.c b/src/backend/access/index/genam.c index 301062951b6..59e6cc32db5 100644 --- a/src/backend/access/index/genam.c +++ b/src/backend/access/index/genam.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/index/genam.c,v 1.69 2008/06/08 22:41:04 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/index/genam.c,v 1.70 2008/06/08 23:16:43 alvherre Exp $ * * NOTES * many of the old access method routines have been turned into @@ -24,6 +24,7 @@ #include "access/transam.h" #include "miscadmin.h" #include "pgstat.h" +#include "storage/bufmgr.h" #include "utils/tqual.h" |