mirror of
https://github.com/postgres/postgres.git
synced 2025-05-29 00:03:09 -04:00
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
The file 'backend/utils/adt/arrayfuncs.c' won't compile with the February 14th snapshot, because of an inconsistency between the declaration and implementation of ReadArrayStr(). As far as I can tell, the predeclaration is wrong. I assume this is what was meant:
This commit is contained in:
parent
a377ad58ea
commit
aa0d3ec1be
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.25 1998/02/13 19:45:53 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/adt/arrayfuncs.c,v 1.26 1998/02/14 18:00:37 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -44,9 +44,9 @@
|
|||||||
/*-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-*/
|
/*-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-*/
|
||||||
static int _ArrayCount(char *str, int dim[], int typdelim);
|
static int _ArrayCount(char *str, int dim[], int typdelim);
|
||||||
static char *_ReadArrayStr(char *arrayStr, int nitems, int ndim, int dim[],
|
static char *_ReadArrayStr(char *arrayStr, int nitems, int ndim, int dim[],
|
||||||
FmgrInfo *inputproc, Oid typelem, char typdelim,
|
FmgrInfo *inputproc, Oid typelem, int16 typmod,
|
||||||
int typlen, bool typbyval, char typalign,
|
char typdelim, int typlen, bool typbyval,
|
||||||
int *nbytes, int16 typmod);
|
char typalign, int *nbytes);
|
||||||
|
|
||||||
#ifdef LOARRAY
|
#ifdef LOARRAY
|
||||||
static char *
|
static char *
|
||||||
|
Loading…
x
Reference in New Issue
Block a user