Commit d7171601 authored by Jan Wieck's avatar Jan Wieck

Changed TypeName.typmod to int32 - atttypmod is of that size

Jan
parent 1adb6a9d
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * 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 ...@@ -669,7 +669,7 @@ typedef struct TypeName
char *name; /* name of the type */ char *name; /* name of the type */
bool timezone; /* timezone specified? */ bool timezone; /* timezone specified? */
bool setof; /* is a set? */ bool setof; /* is a set? */
int16 typmod; /* type modifier */ int32 typmod; /* type modifier */
List *arrayBounds; /* array bounds */ List *arrayBounds; /* array bounds */
} TypeName; } TypeName;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment