diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-25 21:29:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-25 21:29:42 +0000 |
commit | f893ee271f1a500f7eb3f68de311080abfde8869 (patch) | |
tree | b45af28758b2e2e7258d44eef359ef23938a2e7a /src/backend/nodes/copyfuncs.c | |
parent | dbe100c4022e0125c103c3c0818ac5b327cc8283 (diff) | |
download | postgresql-f893ee271f1a500f7eb3f68de311080abfde8869.tar.gz postgresql-f893ee271f1a500f7eb3f68de311080abfde8869.zip |
Remove unused constisset and constiscast fields of Const nodes. Clean
up code and documentation associated with Param nodes.
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 0f02b5d119b..a678d6326b1 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.222 2002/11/25 03:33:27 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.223 2002/11/25 21:29:36 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -769,8 +769,6 @@ _copyConst(Const *from) COPY_SCALAR_FIELD(constisnull); COPY_SCALAR_FIELD(constbyval); - COPY_SCALAR_FIELD(constisset); - COPY_SCALAR_FIELD(constiscast); return newnode; } |