1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-25 13:17:41 +03:00

New pgindent run with fixes suggested by Tom. Patch manually reviewed,

initdb/regression tests pass.
This commit is contained in:
Bruce Momjian
2001-11-05 17:46:40 +00:00
parent 34153b2052
commit ea08e6cd55
503 changed files with 1648 additions and 1610 deletions

View File

@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: async.h,v 1.19 2001/10/28 06:26:06 momjian Exp $
* $Id: async.h,v 1.20 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -36,4 +36,4 @@ extern void Async_NotifyHandler(SIGNAL_ARGS);
extern void EnableNotifyInterrupt(void);
extern void DisableNotifyInterrupt(void);
#endif /* ASYNC_H */
#endif /* ASYNC_H */

View File

@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994-5, Regents of the University of California
*
* $Id: cluster.h,v 1.11 2001/10/28 06:26:06 momjian Exp $
* $Id: cluster.h,v 1.12 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -25,4 +25,4 @@
*/
extern void cluster(char *oldrelname, char *oldindexname);
#endif /* CLUSTER_H */
#endif /* CLUSTER_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: command.h,v 1.30 2001/10/28 06:26:06 momjian Exp $
* $Id: command.h,v 1.31 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -72,4 +72,4 @@ extern void AlterTableOwner(const char *relationName, const char *newOwnerName);
*/
extern void LockTableCommand(LockStmt *lockstmt);
#endif /* COMMAND_H */
#endif /* COMMAND_H */

View File

@@ -32,4 +32,4 @@ extern void DeleteComments(Oid oid, Oid classoid);
extern void CreateComments(Oid oid, Oid classoid, int32 subid, char *comment);
#endif /* COMMENT_H */
#endif /* COMMENT_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: copy.h,v 1.15 2001/10/28 06:26:06 momjian Exp $
* $Id: copy.h,v 1.16 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,4 +19,4 @@ extern int copy_lineno;
void DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
char *filename, char *delim, char *null_print);
#endif /* COPY_H */
#endif /* COPY_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: creatinh.h,v 1.16 2001/10/28 06:26:06 momjian Exp $
* $Id: creatinh.h,v 1.17 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,4 +20,4 @@ extern void DefineRelation(CreateStmt *stmt, char relkind);
extern void RemoveRelation(char *name);
extern void TruncateRelation(char *name);
#endif /* CREATINH_H */
#endif /* CREATINH_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: dbcommands.h,v 1.18 2001/10/28 06:26:06 momjian Exp $
* $Id: dbcommands.h,v 1.19 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,4 +18,4 @@ extern void createdb(const char *dbname, const char *dbpath,
const char *dbtemplate, int encoding);
extern void dropdb(const char *dbname);
#endif /* DBCOMMANDS_H */
#endif /* DBCOMMANDS_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: defrem.h,v 1.27 2001/10/28 06:26:06 momjian Exp $
* $Id: defrem.h,v 1.28 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -49,4 +49,4 @@ extern void RemoveOperator(char *operatorName,
extern void RemoveType(char *typeName);
extern void RemoveAggregate(char *aggName, char *aggType);
#endif /* DEFREM_H */
#endif /* DEFREM_H */

View File

@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994-5, Regents of the University of California
*
* $Id: explain.h,v 1.14 2001/10/28 06:26:06 momjian Exp $
* $Id: explain.h,v 1.15 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,4 +18,4 @@
extern void ExplainQuery(Query *query, bool verbose, bool analyze, CommandDest dest);
#endif /* EXPLAIN_H */
#endif /* EXPLAIN_H */

View File

@@ -14,4 +14,4 @@
extern void CreateProceduralLanguage(CreatePLangStmt *stmt);
extern void DropProceduralLanguage(DropPLangStmt *stmt);
#endif /* PROCLANG_H */
#endif /* PROCLANG_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: rename.h,v 1.12 2001/10/28 06:26:06 momjian Exp $
* $Id: rename.h,v 1.13 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,4 +22,4 @@ extern void renameatt(char *relname,
extern void renamerel(const char *oldrelname,
const char *newrelname);
#endif /* RENAME_H */
#endif /* RENAME_H */

View File

@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: sequence.h,v 1.18 2001/10/28 06:26:06 momjian Exp $
* $Id: sequence.h,v 1.19 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -90,4 +90,4 @@ extern void seq_redo(XLogRecPtr lsn, XLogRecord *rptr);
extern void seq_undo(XLogRecPtr lsn, XLogRecord *rptr);
extern void seq_desc(char *buf, uint8 xl_info, char *rec);
#endif /* SEQUENCE_H */
#endif /* SEQUENCE_H */

View File

@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: trigger.h,v 1.29 2001/10/28 06:26:06 momjian Exp $
* $Id: trigger.h,v 1.30 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -161,4 +161,4 @@ extern void DeferredTriggerSetState(ConstraintsSetStmt *stmt);
*/
extern bool RI_FKey_keyequal_upd(TriggerData *trigdata);
#endif /* TRIGGER_H */
#endif /* TRIGGER_H */

View File

@@ -3,7 +3,7 @@
* user.h
*
*
* $Id: user.h,v 1.15 2001/10/28 06:26:06 momjian Exp $
* $Id: user.h,v 1.16 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,4 +22,4 @@ extern void DropGroup(DropGroupStmt *stmt);
extern Datum update_pg_pwd(PG_FUNCTION_ARGS);
#endif /* USER_H */
#endif /* USER_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: vacuum.h,v 1.42 2001/10/28 06:26:06 momjian Exp $
* $Id: vacuum.h,v 1.43 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -57,4 +57,4 @@ extern void lazy_vacuum_rel(Relation onerel, VacuumStmt *vacstmt);
/* in commands/analyze.c */
extern void analyze_rel(Oid relid, VacuumStmt *vacstmt);
#endif /* VACUUM_H */
#endif /* VACUUM_H */

View File

@@ -2,7 +2,7 @@
* Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var'
* statements
*
* $Id: variable.h,v 1.16 2001/10/28 06:26:06 momjian Exp $
* $Id: variable.h,v 1.17 2001/11/05 17:46:33 momjian Exp $
*
*/
#ifndef VARIABLE_H
@@ -15,4 +15,4 @@ extern void ResetPGVariable(const char *name);
extern void set_default_datestyle(void);
extern void set_default_client_encoding(void);
#endif /* VARIABLE_H */
#endif /* VARIABLE_H */

View File

@@ -7,11 +7,11 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: version.h,v 1.11 2001/10/28 06:26:06 momjian Exp $
* $Id: version.h,v 1.12 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef VERSION_H
#define VERSION_H
#endif /* VERSION_H */
#endif /* VERSION_H */

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: view.h,v 1.12 2001/10/28 06:26:06 momjian Exp $
* $Id: view.h,v 1.13 2001/11/05 17:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,4 +19,4 @@
extern void DefineView(char *view_name, Query *view_parse);
extern void RemoveView(char *view_name);
#endif /* VIEW_H */
#endif /* VIEW_H */