Modify references to function manager to use lower-case calls.

This commit is contained in:
Thomas G. Lockhart 1997-04-27 19:16:44 +00:00
parent 65973e3f35
commit ee2f8e0472

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.25 1997/04/05 06:29:03 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.26 1997/04/27 19:16:44 thomas Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -634,7 +634,7 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
{ {
Node *lexpr = transformExpr(pstate, a->lexpr, precedence); Node *lexpr = transformExpr(pstate, a->lexpr, precedence);
result = ParseFunc(pstate, result = ParseFunc(pstate,
"NullValue", lcons(lexpr, NIL), "nullvalue", lcons(lexpr, NIL),
&pstate->p_last_resno); &pstate->p_last_resno);
} }
break; break;
@ -642,7 +642,7 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
{ {
Node *lexpr = transformExpr(pstate, a->lexpr, precedence); Node *lexpr = transformExpr(pstate, a->lexpr, precedence);
result = ParseFunc(pstate, result = ParseFunc(pstate,
"NonNullValue", lcons(lexpr, NIL), "nonnullvalue", lcons(lexpr, NIL),
&pstate->p_last_resno); &pstate->p_last_resno);
} }
break; break;