diff options
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index c02270fa2e7..6cf8450567a 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.266 2003/11/09 21:30:36 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.267 2003/11/12 21:15:52 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -273,6 +273,17 @@ _copyIndexScan(IndexScan *from) } newnode->indxstrategy = newstrat; } + /* this can become COPY_NODE_FIELD when OID lists are normal objects: */ + { + List *newsubtype = NIL; + List *tmp; + + foreach(tmp, from->indxsubtype) + { + newsubtype = lappend(newsubtype, listCopy(lfirst(tmp))); + } + newnode->indxsubtype = newsubtype; + } COPY_SCALAR_FIELD(indxorderdir); return newnode; |