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/parser/parse_node.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'src/backend/parser/parse_node.c') diff --git a/src/backend/parser/parse_node.c b/src/backend/parser/parse_node.c index 608a67921c1..088aaafb0b3 100644 --- a/src/backend/parser/parse_node.c +++ b/src/backend/parser/parse_node.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.73 2002/11/15 02:50:09 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.74 2002/11/25 21:29:41 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -293,9 +293,7 @@ transformArraySubscripts(ParseState *pstate, sizeof(int32), Int32GetDatum(1), false, - true, /* pass by value */ - false, - false); + true); /* pass by value */ } lowerIndexpr = lappend(lowerIndexpr, subexpr); } @@ -444,8 +442,6 @@ make_const(Value *value) -1, (Datum) NULL, true, - false, - false, false); return con; } @@ -454,9 +450,7 @@ make_const(Value *value) typelen, val, false, - typebyval, - false, /* not a set */ - false); /* not coerced */ + typebyval); return con; } -- cgit v1.2.3