summaryrefslogtreecommitdiff
path: root/src/include/nodes/makefuncs.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-02-21 16:58:49 +0000
committerBruce Momjian <bruce@momjian.us>1998-02-21 16:58:49 +0000
commit856da1e65a9e7d6381771d31f54fe9ee8c021592 (patch)
treea78dc5b5eb5d25b240464242ba306d5ad474c1bd /src/include/nodes/makefuncs.h
parent7b30490bc9cebef913f6f95cd0487a3c6989dafa (diff)
downloadpostgresql-856da1e65a9e7d6381771d31f54fe9ee8c021592.tar.gz
Constlen can be -1, so make it a signed type.
Diffstat (limited to 'src/include/nodes/makefuncs.h')
-rw-r--r--src/include/nodes/makefuncs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h
index 6fefdce5f3..569c70f15d 100644
--- a/src/include/nodes/makefuncs.h
+++ b/src/include/nodes/makefuncs.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: makefuncs.h,v 1.9 1998/02/10 16:04:24 momjian Exp $
+ * $Id: makefuncs.h,v 1.10 1998/02/21 16:58:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -39,7 +39,7 @@ extern Resdom * makeResdom(AttrNumber resno,
int resjunk);
extern Const * makeConst(Oid consttype,
- Size constlen,
+ int constlen,
Datum constvalue,
bool constisnull,
bool constbyval,