diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-01-10 10:00:39 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-01-10 10:00:39 +0000 |
commit | c6a605705ce0070e368537155f989f086ba2f403 (patch) | |
tree | d2555ab7e7a02e3992a42ba83143caab22d1aa14 /src/backend/commands/copy.c | |
parent | f48936e8efb1e749342e50b19ebd14a29105a2df (diff) | |
download | postgresql-c6a605705ce0070e368537155f989f086ba2f403.tar.gz postgresql-c6a605705ce0070e368537155f989f086ba2f403.zip |
index_insert has now HeapRelation as last param (for unique index
implementation).
Diffstat (limited to 'src/backend/commands/copy.c')
-rw-r--r-- | src/backend/commands/copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index 539984bc241..d3781d68d49 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.19 1996/12/19 04:58:24 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.20 1997/01/10 09:57:14 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -619,7 +619,7 @@ CopyFrom(Relation rel, bool binary, bool oids, FILE *fp, char *delim) index_nulls, finfoP[i]); indexRes = index_insert(index_rels[i], &idatum, index_nulls, - &(tuple->t_ctid), false); + &(tuple->t_ctid), rel); if (indexRes) pfree(indexRes); } } |