diff options
| author | Bruce Momjian <bruce@momjian.us> | 2003-08-08 21:42:59 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2003-08-08 21:42:59 +0000 |
| commit | 46785776c42143af8f5433bb580ff13f2a9f65e1 (patch) | |
| tree | 0c1f6da64634a202ff20176865b4a9dc69b8ac40 /src/include/utils/array.h | |
| parent | 0e2b12bd9689ac4fd353f7dba33dd796d0e3a07d (diff) | |
| download | postgresql-46785776c42143af8f5433bb580ff13f2a9f65e1.tar.gz | |
Another pgindent run with updated typedefs.
Diffstat (limited to 'src/include/utils/array.h')
| -rw-r--r-- | src/include/utils/array.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/utils/array.h b/src/include/utils/array.h index f6c73dd2bd..f37a8e117e 100644 --- a/src/include/utils/array.h +++ b/src/include/utils/array.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: array.h,v 1.44 2003/08/04 02:40:15 momjian Exp $ + * $Id: array.h,v 1.45 2003/08/08 21:42:55 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -47,7 +47,7 @@ typedef struct ArrayBuildState int16 typlen; /* needed info about datatype */ bool typbyval; char typalign; -} ArrayBuildState; +} ArrayBuildState; /* * structure to cache type metadata needed for array manipulation @@ -62,7 +62,7 @@ typedef struct ArrayMetaState Oid typelem; Oid typiofunc; FmgrInfo proc; -} ArrayMetaState; +} ArrayMetaState; /* * fmgr macros for array objects @@ -160,13 +160,13 @@ extern void deconstruct_array(ArrayType *array, Oid elmtype, int elmlen, bool elmbyval, char elmalign, Datum **elemsp, int *nelemsp); -extern ArrayBuildState *accumArrayResult(ArrayBuildState * astate, +extern ArrayBuildState *accumArrayResult(ArrayBuildState *astate, Datum dvalue, bool disnull, Oid element_type, MemoryContext rcontext); -extern Datum makeArrayResult(ArrayBuildState * astate, +extern Datum makeArrayResult(ArrayBuildState *astate, MemoryContext rcontext); -extern Datum makeMdArrayResult(ArrayBuildState * astate, int ndims, +extern Datum makeMdArrayResult(ArrayBuildState *astate, int ndims, int *dims, int *lbs, MemoryContext rcontext); /* |
