mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
index_insert has now HeapRelation as last param (for
unique index implementation).
This commit is contained in:
@ -292,7 +292,7 @@ gistbuild(Relation heap,
|
||||
* It doesn't do any work; just locks the relation and passes the buck.
|
||||
*/
|
||||
InsertIndexResult
|
||||
gistinsert(Relation r, Datum *datum, char *nulls, ItemPointer ht_ctid, bool is_update)
|
||||
gistinsert(Relation r, Datum *datum, char *nulls, ItemPointer ht_ctid, Relation heapRel)
|
||||
{
|
||||
InsertIndexResult res;
|
||||
IndexTuple itup;
|
||||
|
Reference in New Issue
Block a user