From 9f41b9ae3d5940253bb8dd1f724a5a4c6b8aee1e Mon Sep 17 00:00:00 2001 From: "Anton A. Melnikov" Date: Mon, 5 Jun 2023 16:14:01 +0300 Subject: [PATCH] PGPRO-8122: Use updated ExecInsertIndexTuples() for 16+ Caused by: - 19d8e2308bc51ec4ab993ce90077342c915dd116 (PostgreSQL) Ignore BRIN indexes when checking for HOT updates Tag: vops --- vops.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vops.c b/vops.c index 53c8a56..314923a 100644 --- a/vops.c +++ b/vops.c @@ -1173,7 +1173,12 @@ UserTableUpdateOpenIndexes() #if PG_VERSION_NUM>=140000 false, #endif + +#if PG_VERSION_NUM>=160000 + false, NULL, NIL, false); +#else false, NULL, NIL); +#endif if (recheckIndexes != NIL) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),