1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Constlen can be -1, so make it a signed type.

This commit is contained in:
Bruce Momjian
1998-02-21 16:58:49 +00:00
parent 7b30490bc9
commit 856da1e65a
5 changed files with 13 additions and 13 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/makefuncs.c,v 1.7 1998/02/10 16:03:17 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/makefuncs.c,v 1.8 1998/02/21 16:58:22 momjian Exp $
*
* NOTES
* Creator functions in POSTGRES 4.2 are generated automatically. Most of
@ -102,7 +102,7 @@ makeResdom(AttrNumber resno,
*/
Const *
makeConst(Oid consttype,
Size constlen,
int constlen,
Datum constvalue,
bool constisnull,
bool constbyval,