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/utils/cache | |
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/utils/cache')
-rw-r--r-- | src/backend/utils/cache/lsyscache.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c index ae77dacd13a..cd7dc8d549f 100644 --- a/src/backend/utils/cache/lsyscache.c +++ b/src/backend/utils/cache/lsyscache.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.85 2002/09/19 23:40:56 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.86 2002/11/25 21:29:42 tgl Exp $ * * NOTES * Eventually, the index information should go through here, too. @@ -1047,9 +1047,7 @@ get_typdefault(Oid typid) type->typlen, datum, false, - type->typbyval, - false, /* not a set */ - false); + type->typbyval); pfree(strDefaultVal); } else |