]> granicus.if.org Git - postgresql/commitdiff
Changed TypeName.typmod to int32 - atttypmod is of that size
authorJan Wieck <JanWieck@Yahoo.com>
Mon, 21 Dec 1998 12:50:29 +0000 (12:50 +0000)
committerJan Wieck <JanWieck@Yahoo.com>
Mon, 21 Dec 1998 12:50:29 +0000 (12:50 +0000)
Jan

src/include/nodes/parsenodes.h

index 9316fa67ddbd5d3a8c90fae6da7d43997bdc6272..0eddad75b6a5a2d9054a5c5be1a7b0da844b7c22 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: parsenodes.h,v 1.63 1998/12/18 09:09:54 vadim Exp $
+ * $Id: parsenodes.h,v 1.64 1998/12/21 12:50:29 wieck Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -669,7 +669,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;