summaryrefslogtreecommitdiff
path: root/src/include/parser
diff options
context:
space:
mode:
authorThomas G. Lockhart1998-12-08 06:18:34 +0000
committerThomas G. Lockhart1998-12-08 06:18:34 +0000
commit9470ab03c93ce4959c86cf1b61feac49a7901099 (patch)
tree4324f74b6676267d294df8594c4d7162fb158f59 /src/include/parser
parent84107b419e56ff70f0ac22a1d88032ec8c736143 (diff)
Define routines and catalog entries for string min()/max() functions.
Extend new type coersion techniques to aggregates.
Diffstat (limited to 'src/include/parser')
-rw-r--r--src/include/parser/parse_func.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h
index a4933426be5..e5cf03d6b3b 100644
--- a/src/include/parser/parse_func.h
+++ b/src/include/parser/parse_func.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * catalog_utils.h--
+ * parse_func.h--
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parse_func.h,v 1.12 1998/10/08 18:30:38 momjian Exp $
+ * $Id: parse_func.h,v 1.13 1998/12/08 06:18:27 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -42,12 +42,14 @@ typedef struct _CandidateList
struct _CandidateList *next;
} *CandidateList;
-extern Node *ParseNestedFuncOrColumn(ParseState *pstate, Attr *attr,
+extern Node *
+ParseNestedFuncOrColumn(ParseState *pstate, Attr *attr,
int *curr_resno, int precedence);
-extern Node *ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs,
+extern Node *
+ParseFuncOrColumn(ParseState *pstate, char *funcname, List *fargs,
int *curr_resno, int precedence);
extern void
- func_error(char *caller, char *funcname, int nargs, Oid *argtypes, char *msg);
+func_error(char *caller, char *funcname, int nargs, Oid *argtypes, char *msg);
#endif /* PARSE_FUNC_H */