From: Cédric Villemain Date: Thu, 5 Dec 2013 00:16:27 +0000 (+0100) Subject: Update to work with 9.3 X-Git-Tag: 1.1.2~10 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=0cc653fd1642ef8b7c213a85391c2993c2ab7826;p=pgfincore.git Update to work with 9.3 need more testing --- diff --git a/pgfincore.c b/pgfincore.c index 1dd1983..3bad687 100644 --- a/pgfincore.c +++ b/pgfincore.c @@ -37,6 +37,11 @@ #error "Unsupported postgresql version" #endif +#if PG_VERSION_NUM > 90299 +#include "access/htup_details.h" /* 9.3 heap_form_tuple */ +#include "common/relpath.h" /* 9.3 relpathbackend */ +#endif + #ifdef PG_MODULE_MAGIC PG_MODULE_MAGIC; #endif