1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-21 00:42:43 +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

@@ -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,