From 0cc653fd1642ef8b7c213a85391c2993c2ab7826 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Villemain?= Date: Thu, 5 Dec 2013 01:16:27 +0100 Subject: [PATCH] Update to work with 9.3 need more testing --- pgfincore.c | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.5