1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Rename ParseFuncOrColumn() to ParseColumnOrFunc().

This commit is contained in:
Bruce Momjian
2001-05-18 22:35:51 +00:00
parent dc0ff5c67a
commit 2fd831d323
5 changed files with 22 additions and 19 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.93 2001/05/18 21:24:19 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.94 2001/05/18 22:35:50 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -173,7 +173,7 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
a->lexpr,
precedence);
result = ParseFuncOrColumn(pstate,
result = ParseColumnOrFunc(pstate,
"nullvalue",
makeList1(lexpr),
false, false,
@ -186,7 +186,7 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
a->lexpr,
precedence);
result = ParseFuncOrColumn(pstate,
result = ParseColumnOrFunc(pstate,
"nonnullvalue",
makeList1(lexpr),
false, false,
@ -273,7 +273,7 @@ transformExpr(ParseState *pstate, Node *expr, int precedence)
lfirst(args) = transformExpr(pstate,
(Node *) lfirst(args),
precedence);
result = ParseFuncOrColumn(pstate,
result = ParseColumnOrFunc(pstate,
fn->funcname,
fn->args,
fn->agg_star,