Skip to content
Snippets Groups Projects
Commit c17b2d1b authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix for constbyval.

parent 33572dd7
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.34 1998/09/01 04:30:30 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.35 1998/10/01 22:51:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -627,7 +627,7 @@ parser_typecast2(Node *expr, Oid exprType, Type tp, int32 atttypmod)
(Size) len,
(Datum) lcp,
false,
false, /* was omitted */
typeByVal(tp),
false, /* not a set */
true /* is cast */ );
......
......@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: makefuncs.h,v 1.14 1998/09/01 04:36:37 momjian Exp $
* $Id: makefuncs.h,v 1.15 1998/10/01 22:51:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -31,8 +31,7 @@ extern Var *makeVar(Index varno,
Index varnoold,
AttrNumber varoattno);
extern TargetEntry *
makeTargetEntry(Resdom *resdom, Node *expr);
extern TargetEntry *makeTargetEntry(Resdom *resdom, Node *expr);
extern Resdom *makeResdom(AttrNumber resno,
Oid restype,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment