summaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gist.c
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>1997-01-10 09:46:33 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>1997-01-10 09:46:33 +0000
commit675457d6abad99f4f7f4501bdf2c1bf064c912a4 (patch)
treee965069537760afe0b2b95cc65621b8937a819b8 /src/backend/access/gist/gist.c
parentc7990b35f7d65cb9c65377acbbe4393de017af38 (diff)
downloadpostgresql-675457d6abad99f4f7f4501bdf2c1bf064c912a4.tar.gz
index_insert has now HeapRelation as last param (for
unique index implementation).
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r--src/backend/access/gist/gist.c2
1 files changed, 1 insertions, 1 deletions
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;