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/index/indexam.c | |
parent | c7990b35f7d65cb9c65377acbbe4393de017af38 (diff) |
index_insert has now HeapRelation as last param (for
unique index implementation).
Diffstat (limited to 'src/backend/access/index/indexam.c')
-rw-r--r-- | src/backend/access/index/indexam.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/index/indexam.c b/src/backend/access/index/indexam.c index 93539cc82bc..245ff4861a0 100644 --- a/src/backend/access/index/indexam.c +++ b/src/backend/access/index/indexam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.9 1996/12/26 17:44:46 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.10 1997/01/10 09:46:25 vadim Exp $ * * INTERFACE ROUTINES * index_open - open an index relation by relationId @@ -165,7 +165,7 @@ index_insert(Relation relation, Datum *datum, char *nulls, ItemPointer heap_t_ctid, - bool is_update) + Relation heapRel) { RegProcedure procedure; InsertIndexResult specificResult; @@ -178,7 +178,7 @@ index_insert(Relation relation, * ---------------- */ specificResult = (InsertIndexResult) - fmgr(procedure, relation, datum, nulls, heap_t_ctid, is_update, NULL); + fmgr(procedure, relation, datum, nulls, heap_t_ctid, heapRel, NULL); /* ---------------- * the insert proc is supposed to return a "specific result" and |