diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-01-10 09:36:34 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-01-10 09:36:34 +0000 |
commit | c7990b35f7d65cb9c65377acbbe4393de017af38 (patch) | |
tree | 485f2a6ed7e1366edb975372f01f6ef5146c4835 /src/include/access/gist.h | |
parent | 41857f3ca25508f6f1c3e65311b9c542faa78500 (diff) | |
download | postgresql-c7990b35f7d65cb9c65377acbbe4393de017af38.tar.gz postgresql-c7990b35f7d65cb9c65377acbbe4393de017af38.zip |
index_insert has now HeapRelation as last param (for
unique index implementation).
Diffstat (limited to 'src/include/access/gist.h')
-rw-r--r-- | src/include/access/gist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/gist.h b/src/include/access/gist.h index cd723e31f24..e49a988176d 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -174,7 +174,7 @@ extern void gistbuild(Relation heap, FuncIndexInfo *finfo, PredInfo *predInfo); extern InsertIndexResult gistinsert(Relation r, Datum *datum, - char *nulls,ItemPointer ht_ctid, bool is_update); + char *nulls,ItemPointer ht_ctid, Relation heapRel); extern void _gistdump(Relation r); extern char *text_range_out(TXTRANGE *r); extern char *int_range_out(INTRANGE *r); |