diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-01-10 09:46:33 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-01-10 09:46:33 +0000 |
commit | 675457d6abad99f4f7f4501bdf2c1bf064c912a4 (patch) | |
tree | e965069537760afe0b2b95cc65621b8937a819b8 /src/backend/access/gist/gist.c | |
parent | c7990b35f7d65cb9c65377acbbe4393de017af38 (diff) | |
download | postgresql-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.c | 2 |
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; |