diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-07-12 21:29:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-07-12 21:29:40 +0000 |
commit | 683f399391cf3f553653c43cb324e44e8c85a4ad (patch) | |
tree | 905d2c8073c79bde1248a44044d28ef40774f2f3 /src/include/utils/array.h | |
parent | 647bbfb08604c9805f94cc6337e660ce8b450d82 (diff) | |
download | postgresql-683f399391cf3f553653c43cb324e44e8c85a4ad.tar.gz postgresql-683f399391cf3f553653c43cb324e44e8c85a4ad.zip |
Change atttypmod from int16 to int32, for Thomas.
Diffstat (limited to 'src/include/utils/array.h')
-rw-r--r-- | src/include/utils/array.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/array.h b/src/include/utils/array.h index 86603cd453a..c5b8804151d 100644 --- a/src/include/utils/array.h +++ b/src/include/utils/array.h @@ -10,7 +10,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: array.h,v 1.11 1998/02/26 04:43:45 momjian Exp $ + * $Id: array.h,v 1.12 1998/07/12 21:29:38 momjian Exp $ * * NOTES * XXX the data array should be LONGALIGN'd -- notice that the array @@ -114,7 +114,7 @@ typedef struct /* * prototypes for functions defined in arrayfuncs.c */ -extern char *array_in(char *string, Oid element_type, int16 typmod); +extern char *array_in(char *string, Oid element_type, int32 typmod); extern char *array_out(ArrayType *v, Oid element_type); extern char *array_dims(ArrayType *v, bool *isNull); extern Datum |