Skip to content

Commit db0b703

Browse files
authored
Merge pull request #29 from postgrespro/PGPRO-8122
PGPRO-8122: Use updated ExecInsertIndexTuples() for 16+
2 parents 44d3349 + 9f41b9a commit db0b703

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: vops.c

+5
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,12 @@ UserTableUpdateOpenIndexes()
11731173
#if PG_VERSION_NUM>=140000
11741174
false,
11751175
#endif
1176+
1177+
#if PG_VERSION_NUM>=160000
1178+
false, NULL, NIL, false);
1179+
#else
11761180
false, NULL, NIL);
1181+
#endif
11771182
if (recheckIndexes != NIL)
11781183
ereport(ERROR,
11791184
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),

0 commit comments

Comments
 (0)