aboutsummaryrefslogtreecommitdiff
path: root/src/include/parser/parse_expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/parser/parse_expr.h')
-rw-r--r--src/include/parser/parse_expr.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h
index 50d7b284bb5..7c76001e4ee 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.17 2000/02/26 21:11:09 tgl Exp $
+ * $Id: parse_expr.h,v 1.18 2000/03/17 05:29:07 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,9 +20,12 @@
#define EXPR_COLUMN_FIRST 1
#define EXPR_RELATION_FIRST 2
+extern int max_expr_depth;
+
extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence);
extern Oid exprType(Node *expr);
extern int32 exprTypmod(Node *expr);
extern bool exprIsLengthCoercion(Node *expr, int32 *coercedTypmod);
+extern void parse_expr_init(void);
#endif /* PARSE_EXPR_H */