diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-13 11:45:50 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-13 11:45:50 +0000 |
commit | b3b0f204126f879805554dcaa1a185079a475421 (patch) | |
tree | 8aed0415919e4fbe0baf0b77da6ec8ff5168627a | |
parent | e0a4c7acaaa15592fb72c9736e1309e35c38fa00 (diff) | |
download | postgresql-b3b0f204126f879805554dcaa1a185079a475421.tar.gz postgresql-b3b0f204126f879805554dcaa1a185079a475421.zip |
Cleanup from patch applied.
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 19515ac0268..2b3a474bfc0 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.11 1997/09/12 22:07:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.12 1997/09/13 11:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -725,7 +725,7 @@ _copyConst(Const *from) * puts in the right values here. * ---------------- */ - if (!from->constisnull && cached_type != from->consttype) { + if (!from->constisnull && cached_type != from->consttype) { HeapTuple typeTuple; TypeTupleForm typeStruct; |