mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Modify references to function manager to use lower-case calls.
This commit is contained in:
parent
65973e3f35
commit
ee2f8e0472
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* 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);
|
||||
result = ParseFunc(pstate,
|
||||
"NullValue", lcons(lexpr, NIL),
|
||||
"nullvalue", lcons(lexpr, NIL),
|
||||
&pstate->p_last_resno);
|
||||
}
|
||||
break;
|
||||
@ -642,7 +642,7 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
|
||||
{
|
||||
Node *lexpr = transformExpr(pstate, a->lexpr, precedence);
|
||||
result = ParseFunc(pstate,
|
||||
"NonNullValue", lcons(lexpr, NIL),
|
||||
"nonnullvalue", lcons(lexpr, NIL),
|
||||
&pstate->p_last_resno);
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user