1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +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

@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parse_func.h,v 1.29 2001/03/22 04:00:57 momjian Exp $
* $Id: parse_func.h,v 1.30 2001/05/18 22:35:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -40,7 +40,7 @@ typedef struct _CandidateList
extern Node *ParseNestedFuncOrColumn(ParseState *pstate, Attr *attr,
int precedence);
extern Node *ParseFuncOrColumn(ParseState *pstate,
extern Node *ParseColumnOrFunc(ParseState *pstate,
char *funcname, List *fargs,
bool agg_star, bool agg_distinct,
int precedence);