From 25a4fef344f5c2b90e6a9d32144ee12b9198487d Mon Sep 17 00:00:00 2001 From: Teodor Sigaev Date: Thu, 8 Oct 2020 00:42:32 +0300 Subject: [PATCH] v13 + other support --- smlar_gin.c | 4 ++++ smlar_gist.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/smlar_gin.c b/smlar_gin.c index 798b9be..4164fa4 100644 --- a/smlar_gin.c +++ b/smlar_gin.c @@ -5,7 +5,11 @@ #include "fmgr.h" #include "access/gin.h" #include "access/skey.h" +#if PG_VERSION_NUM < 130000 +#include "access/tuptoaster.h" +#else #include "access/heaptoast.h" +#endif PG_FUNCTION_INFO_V1(smlararrayextract); Datum smlararrayextract(PG_FUNCTION_ARGS); diff --git a/smlar_gist.c b/smlar_gist.c index 8cd044b..7d77788 100644 --- a/smlar_gist.c +++ b/smlar_gist.c @@ -3,7 +3,11 @@ #include "fmgr.h" #include "access/gist.h" #include "access/skey.h" +#if PG_VERSION_NUM < 130000 +#include "access/tuptoaster.h" +#else #include "access/heaptoast.h" +#endif #include "utils/memutils.h" typedef struct SmlSign { -- 2.37.3