diff options
Diffstat (limited to 'src/include/parser')
-rw-r--r-- | src/include/parser/analyze.h | 4 | ||||
-rw-r--r-- | src/include/parser/parse_expr.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/include/parser/analyze.h b/src/include/parser/analyze.h index afd8a34fb3e..9d60e0f64c8 100644 --- a/src/include/parser/analyze.h +++ b/src/include/parser/analyze.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: analyze.h,v 1.11 2000/10/05 19:11:38 tgl Exp $ + * $Id: analyze.h,v 1.12 2000/10/07 00:58:21 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -15,6 +15,6 @@ #include "parser/parse_node.h" -extern List *parse_analyze(List *pl, ParseState *parentParseState); +extern List *parse_analyze(Node *parseTree, ParseState *parentParseState); #endif /* ANALYZE_H */ diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h index 7f1b5d5122d..410a24bc455 100644 --- a/src/include/parser/parse_expr.h +++ b/src/include/parser/parse_expr.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_expr.h,v 1.19 2000/06/15 03:32:55 momjian Exp $ + * $Id: parse_expr.h,v 1.20 2000/10/07 00:58:21 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -26,5 +26,6 @@ extern Oid exprType(Node *expr); extern int32 exprTypmod(Node *expr); extern bool exprIsLengthCoercion(Node *expr, int32 *coercedTypmod); extern void parse_expr_init(void); +extern char *TypeNameToInternalName(TypeName *typename); #endif /* PARSE_EXPR_H */ |