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

Change atttypmod from int16 to int32, for Thomas.

This commit is contained in:
Bruce Momjian
1998-07-12 21:29:40 +00:00
parent 647bbfb086
commit 683f399391
23 changed files with 67 additions and 67 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.49 1998/02/26 04:41:59 momjian Exp $
* $Id: parsenodes.h,v 1.50 1998/07/12 21:29:31 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -644,7 +644,7 @@ typedef struct TypeName
char *name; /* name of the type */
bool timezone; /* timezone specified? */
bool setof; /* is a set? */
int16 typmod; /* type modifier */
int32 typmod; /* type modifier */
List *arrayBounds; /* array bounds */
} TypeName;