From f893ee271f1a500f7eb3f68de311080abfde8869 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 25 Nov 2002 21:29:42 +0000 Subject: Remove unused constisset and constiscast fields of Const nodes. Clean up code and documentation associated with Param nodes. --- src/backend/utils/cache/lsyscache.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/backend/utils/cache/lsyscache.c') diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c index ae77dacd13..cd7dc8d549 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 -- cgit v1.2.1