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:
@ -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
|
||||
|
Reference in New Issue
Block a user