1
0
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:
Vadim B. Mikheev
1997-01-10 09:36:34 +00:00
parent 41857f3ca2
commit c7990b35f7
5 changed files with 10 additions and 10 deletions

View File

@ -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);