1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +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 10:00:39 +00:00
parent f48936e8ef
commit c6a605705c
4 changed files with 12 additions and 11 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.6 1996/11/13 20:48:34 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.7 1997/01/10 09:58:53 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@ -1103,10 +1103,10 @@ ExecInsertIndexTuples(TupleTableSlot *slot,
result = index_insert(relationDescs[i], /* index relation */
datum, /* array of heaptuple Datums */
nulls, /* info on nulls */
&(heapTuple->t_ctid),
is_update); /* oid of heap tuple */
datum, /* array of heaptuple Datums */
nulls, /* info on nulls */
&(heapTuple->t_ctid), /* oid of heap tuple */
heapRelation);
/* ----------------
* keep track of index inserts for debugging