aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Wieck <JanWieck@Yahoo.com>1998-12-21 12:50:29 +0000
committerJan Wieck <JanWieck@Yahoo.com>1998-12-21 12:50:29 +0000
commitd7171601a351fffacfadc9d4120388875dddf17a (patch)
tree2c7617ec2723c7dfcf0c7e8e90bce789801f0a32
parent1adb6a9d1875d8b733c0a38e064cc483e2cfbfe1 (diff)
downloadpostgresql-d7171601a351fffacfadc9d4120388875dddf17a.tar.gz
postgresql-d7171601a351fffacfadc9d4120388875dddf17a.zip
Changed TypeName.typmod to int32 - atttypmod is of that size
Jan
-rw-r--r--src/include/nodes/parsenodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 9316fa67ddb..0eddad75b6a 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -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;