aboutsummaryrefslogtreecommitdiff
path: root/src/include/parser/parse_expr.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-02-10 16:04:38 +0000
committerBruce Momjian <bruce@momjian.us>1998-02-10 16:04:38 +0000
commit0386a50f316abd8ba599a9bc77a26a070cac6890 (patch)
treea4fb4a0a4de08d60672df3fdd4f4e2f4fbd46e99 /src/include/parser/parse_expr.h
parent2a3c589c5a08e072b060e8a39119358a6fd4166b (diff)
downloadpostgresql-0386a50f316abd8ba599a9bc77a26a070cac6890.tar.gz
postgresql-0386a50f316abd8ba599a9bc77a26a070cac6890.zip
Pass around typmod as int16.
Diffstat (limited to 'src/include/parser/parse_expr.h')
-rw-r--r--src/include/parser/parse_expr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h
index b328cc5e5ca..e533741ec25 100644
--- a/src/include/parser/parse_expr.h
+++ b/src/include/parser/parse_expr.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parse_expr.h,v 1.6 1998/01/20 05:04:47 momjian Exp $
+ * $Id: parse_expr.h,v 1.7 1998/02/10 16:04:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -21,7 +21,7 @@
extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence);
extern Node *transformIdent(ParseState *pstate, Node *expr, int precedence);
extern Oid exprType(Node *expr);
-extern Node *parser_typecast2(Node *expr, Oid exprType, Type tp, int attypmod);
+extern Node *parser_typecast2(Node *expr, Oid exprType, Type tp, int16 attypmod);
#endif /* PARSE_EXPR_H */