summaryrefslogtreecommitdiff
path: root/src/include/utils
diff options
context:
space:
mode:
authorBruce Momjian2003-08-08 21:42:59 +0000
committerBruce Momjian2003-08-08 21:42:59 +0000
commit46785776c42143af8f5433bb580ff13f2a9f65e1 (patch)
tree0c1f6da64634a202ff20176865b4a9dc69b8ac40 /src/include/utils
parent0e2b12bd9689ac4fd353f7dba33dd796d0e3a07d (diff)
Another pgindent run with updated typedefs.
Diffstat (limited to 'src/include/utils')
-rw-r--r--src/include/utils/acl.h4
-rw-r--r--src/include/utils/array.h12
-rw-r--r--src/include/utils/builtins.h4
-rw-r--r--src/include/utils/elog.h6
-rw-r--r--src/include/utils/lsyscache.h4
-rw-r--r--src/include/utils/portal.h4
6 files changed, 17 insertions, 17 deletions
diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h
index 332790f3c1d..59b5d106fa6 100644
--- a/src/include/utils/acl.h
+++ b/src/include/utils/acl.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: acl.h,v 1.60 2003/08/04 02:40:15 momjian Exp $
+ * $Id: acl.h,v 1.61 2003/08/08 21:42:55 momjian Exp $
*
* NOTES
* For backward-compatibility purposes we have to allow there
@@ -190,7 +190,7 @@ typedef enum AclObjectKind
ACL_KIND_OPCLASS, /* pg_opclass */
ACL_KIND_CONVERSION, /* pg_conversion */
MAX_ACL_KIND /* MUST BE LAST */
-} AclObjectKind;
+} AclObjectKind;
/*
* routines used internally
diff --git a/src/include/utils/array.h b/src/include/utils/array.h
index f6c73dd2bd9..f37a8e117e7 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);
/*
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index a552a3d3d5e..a84f8512256 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.226 2003/08/04 02:40:15 momjian Exp $
+ * $Id: builtins.h,v 1.227 2003/08/08 21:42:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -614,7 +614,7 @@ extern Datum ltrim1(PG_FUNCTION_ARGS);
extern Datum rtrim(PG_FUNCTION_ARGS);
extern Datum rtrim1(PG_FUNCTION_ARGS);
extern Datum translate(PG_FUNCTION_ARGS);
-extern Datum chr(PG_FUNCTION_ARGS);
+extern Datum chr (PG_FUNCTION_ARGS);
extern Datum repeat(PG_FUNCTION_ARGS);
extern Datum ascii(PG_FUNCTION_ARGS);
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h
index ee0da125e8c..1a737b7f6de 100644
--- a/src/include/utils/elog.h
+++ b/src/include/utils/elog.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: elog.h,v 1.62 2003/08/04 02:40:15 momjian Exp $
+ * $Id: elog.h,v 1.63 2003/08/08 21:42:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -154,7 +154,7 @@ typedef struct ErrorContextCallback
struct ErrorContextCallback *previous;
void (*callback) (void *arg);
void *arg;
-} ErrorContextCallback;
+} ErrorContextCallback;
extern DLLIMPORT ErrorContextCallback *error_context_stack;
@@ -166,7 +166,7 @@ typedef enum
PGERROR_TERSE, /* single-line error messages */
PGERROR_DEFAULT, /* recommended style */
PGERROR_VERBOSE /* all the facts, ma'am */
-} PGErrorVerbosity;
+} PGErrorVerbosity;
extern PGErrorVerbosity Log_error_verbosity;
extern bool Log_timestamp;
diff --git a/src/include/utils/lsyscache.h b/src/include/utils/lsyscache.h
index 550a14efe73..c94e78eb491 100644
--- a/src/include/utils/lsyscache.h
+++ b/src/include/utils/lsyscache.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: lsyscache.h,v 1.78 2003/08/04 02:40:15 momjian Exp $
+ * $Id: lsyscache.h,v 1.79 2003/08/08 21:42:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,7 +22,7 @@ typedef enum IOFuncSelector
IOFunc_output,
IOFunc_receive,
IOFunc_send
-} IOFuncSelector;
+} IOFuncSelector;
extern bool op_in_opclass(Oid opno, Oid opclass);
extern bool op_requires_recheck(Oid opno, Oid opclass);
diff --git a/src/include/utils/portal.h b/src/include/utils/portal.h
index 52d38c9ff3c..3faf3ec562f 100644
--- a/src/include/utils/portal.h
+++ b/src/include/utils/portal.h
@@ -39,7 +39,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: portal.h,v 1.46 2003/08/04 02:40:15 momjian Exp $
+ * $Id: portal.h,v 1.47 2003/08/08 21:42:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -77,7 +77,7 @@ typedef enum PortalStrategy
PORTAL_ONE_SELECT,
PORTAL_UTIL_SELECT,
PORTAL_MULTI_QUERY
-} PortalStrategy;
+} PortalStrategy;
/*
* Note: typedef Portal is declared in tcop/dest.h as