From 4bf18631a78421d440bd1f42e4696341f195d33a Mon Sep 17 00:00:00 2001 From: Georgy Shelkovy Date: Wed, 29 Nov 2023 08:27:05 +0500 Subject: [PATCH] Pg 17 support according to https://github.com/postgres/postgres/commit/75680c3d805e2323cd437ac567f0677fdfc7b680#diff-4ab3ddf6fc36dec72180e4959fca91a7395d86fe3175f0ae6ceeb29b99faba8cL60 --- hypopg_index.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hypopg_index.c b/hypopg_index.c index f8c7a23..68272f1 100644 --- a/hypopg_index.c +++ b/hypopg_index.c @@ -69,6 +69,10 @@ #endif #include "utils/syscache.h" +#ifndef tuplestore_donestoring +#define tuplestore_donestoring(state) ((void) 0) +#endif + #include "include/hypopg.h" #include "include/hypopg_index.h"