From aad72af0557db33c7d74779c2bc86c7289a85e70 Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Tue, 31 Mar 2020 18:03:42 +0200 Subject: [PATCH] Add forgotten include --- hypopg_table.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hypopg_table.c b/hypopg_table.c index 5caa420..18237c7 100644 --- a/hypopg_table.c +++ b/hypopg_table.c @@ -25,6 +25,9 @@ #include "access/hash.h" #include "access/htup_details.h" #include "access/nbtree.h" +#if PG_VERSION_NUM >= 120000 +#include "access/table.h" +#endif #include "catalog/index.h" #include "catalog/namespace.h" #include "catalog/partition.h"