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.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h
index cbc4095e330..3bd4d3fb47c 100644
--- a/src/include/parser/parse_expr.h
+++ b/src/include/parser/parse_expr.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * parse_exer.h
+ * parse_expr.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parse_expr.h,v 1.13 1999/07/15 23:04:02 momjian Exp $
+ * $Id: parse_expr.h,v 1.14 1999/07/19 00:26:16 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,8 +16,12 @@
#include "parser/parse_node.h"
#include "parser/parse_type.h"
+#define EXPR_COLUMN_FIRST 1
+#define EXPR_RELATION_FIRST 2
+
extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence);
extern Oid exprType(Node *expr);
+extern int32 exprTypmod(Node *expr);
extern Node *parser_typecast2(Node *expr, Oid exprType, Type tp, int32 attypmod);
#endif /* PARSE_EXPR_H */