From 675457d6abad99f4f7f4501bdf2c1bf064c912a4 Mon Sep 17 00:00:00 2001 From: "Vadim B. Mikheev" Date: Fri, 10 Jan 1997 09:46:33 +0000 Subject: index_insert has now HeapRelation as last param (for unique index implementation). --- src/backend/access/gist/gist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/access/gist/gist.c') diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 5188c8bf90..cc14a2e448 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -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; -- cgit v1.2.1