1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

D'Arcy's cleanups

This commit is contained in:
Marc G. Fournier
1996-10-26 04:15:05 +00:00
parent 716d506a81
commit 87b48ff032
6 changed files with 19 additions and 12 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.6 1996/10/10 00:18:52 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.7 1996/10/26 04:13:11 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -918,7 +918,7 @@ ExecEvalOr(Expr *orExpr, ExprContext *econtext, bool *isNull)
List *clause;
bool isDone;
bool IsNull;
Datum const_value;
Datum const_value = 0;
IsNull = false;
clauses = orExpr->args;
@ -979,7 +979,7 @@ ExecEvalAnd(Expr *andExpr, ExprContext *econtext, bool *isNull)
{
List *clauses;
List *clause;
Datum const_value;
Datum const_value = 0;
bool isDone;
bool IsNull;
@ -1056,7 +1056,7 @@ ExecEvalExpr(Node *expression,
bool *isNull,
bool *isDone)
{
Datum retDatum;
Datum retDatum = 0;
*isNull = false;