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/optimizer/path/clausesel.c | |
| parent | dbe100c4022e0125c103c3c0818ac5b327cc8283 (diff) | |
| download | postgresql-f893ee271f1a500f7eb3f68de311080abfde8869.tar.gz | |
Remove unused constisset and constiscast fields of Const nodes. Clean
up code and documentation associated with Param nodes.
Diffstat (limited to 'src/backend/optimizer/path/clausesel.c')
| -rw-r--r-- | src/backend/optimizer/path/clausesel.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/clausesel.c b/src/backend/optimizer/path/clausesel.c index 8a1ab28ac1..d0976ca421 100644 --- a/src/backend/optimizer/path/clausesel.c +++ b/src/backend/optimizer/path/clausesel.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/clausesel.c,v 1.52 2002/10/19 02:56:16 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/clausesel.c,v 1.53 2002/11/25 21:29:39 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,8 +29,7 @@ /* note that pg_type.h hardwires size of bool as 1 ... duplicate it */ #define MAKEBOOLCONST(val,isnull) \ - ((Node *) makeConst(BOOLOID, 1, (Datum) (val), \ - (isnull), true, false, false)) + ((Node *) makeConst(BOOLOID, 1, (Datum) (val), (isnull), true)) /* |
