diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-07-12 21:29:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-07-12 21:29:40 +0000 |
commit | 683f399391cf3f553653c43cb324e44e8c85a4ad (patch) | |
tree | 905d2c8073c79bde1248a44044d28ef40774f2f3 /src/include/parser/parse_expr.h | |
parent | 647bbfb08604c9805f94cc6337e660ce8b450d82 (diff) | |
download | postgresql-683f399391cf3f553653c43cb324e44e8c85a4ad.tar.gz postgresql-683f399391cf3f553653c43cb324e44e8c85a4ad.zip |
Change atttypmod from int16 to int32, for Thomas.
Diffstat (limited to 'src/include/parser/parse_expr.h')
-rw-r--r-- | src/include/parser/parse_expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h index 1a990e4518f..9e02458c8e2 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.8 1998/02/26 04:42:41 momjian Exp $ + * $Id: parse_expr.h,v 1.9 1998/07/12 21:29:34 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -21,6 +21,6 @@ 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, int16 attypmod); +extern Node *parser_typecast2(Node *expr, Oid exprType, Type tp, int32 attypmod); #endif /* PARSE_EXPR_H */ |