Added support for Postgres 14

This commit is contained in:
Andrew Kane
2021-09-30 16:28:25 -07:00
parent 9153a545a7
commit 8dde26920c
4 changed files with 11 additions and 1 deletions

View File

@@ -128,6 +128,9 @@ InsertTuple(Relation rel, IndexTuple itup, Relation heapRel, Datum *values)
bool
ivfflatinsert(Relation index, Datum *values, bool *isnull, ItemPointer heap_tid,
Relation heap, IndexUniqueCheck checkUnique
#if PG_VERSION_NUM >= 140000
,bool indexUnchanged
#endif
#if PG_VERSION_NUM >= 100000
,IndexInfo *indexInfo
#endif