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/backend/utils/adt/arrayfuncs.c | |
parent | 647bbfb08604c9805f94cc6337e660ce8b450d82 (diff) | |
download | postgresql-683f399391cf3f553653c43cb324e44e8c85a4ad.tar.gz postgresql-683f399391cf3f553653c43cb324e44e8c85a4ad.zip |
Change atttypmod from int16 to int32, for Thomas.
Diffstat (limited to 'src/backend/utils/adt/arrayfuncs.c')
-rw-r--r-- | src/backend/utils/adt/arrayfuncs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/adt/arrayfuncs.c b/src/backend/utils/adt/arrayfuncs.c index 3b60534278f..b3c898cbcf4 100644 --- a/src/backend/utils/adt/arrayfuncs.c +++ b/src/backend/utils/adt/arrayfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.30 1998/06/15 19:29:32 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.31 1998/07/12 21:29:22 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -45,7 +45,7 @@ static int _ArrayCount(char *str, int dim[], int typdelim); static char * _ReadArrayStr(char *arrayStr, int nitems, int ndim, int dim[], - FmgrInfo *inputproc, Oid typelem, int16 typmod, + FmgrInfo *inputproc, Oid typelem, int32 typmod, char typdelim, int typlen, bool typbyval, char typalign, int *nbytes); @@ -94,7 +94,7 @@ static char *array_seek(char *ptr, int eltsize, int nitems); char * array_in(char *string, /* input array in external form */ Oid element_type, /* type OID of an array element */ - int16 typmod) + int32 typmod) { int typlen; bool typbyval, @@ -360,7 +360,7 @@ _ReadArrayStr(char *arrayStr, FmgrInfo *inputproc, /* function used for the * conversion */ Oid typelem, - int16 typmod, + int32 typmod, char typdelim, int typlen, bool typbyval, |