1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +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: primnodes.h,v 1.19 1998/02/13 03:45:29 vadim Exp $
* $Id: primnodes.h,v 1.20 1998/02/21 16:58:49 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -181,7 +181,7 @@ typedef struct Const
{
NodeTag type;
Oid consttype;
Size constlen;
int constlen;
Datum constvalue;
bool constisnull;
bool constbyval;