1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-07 12:02:30 +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

@@ -28,7 +28,7 @@ main()
#ifdef DEBUG
FILE *debug;
#endif /* DEBUG */
#endif /* DEBUG */
PGconn *conn;
PGresult *res;
@@ -60,7 +60,7 @@ main()
#ifdef DEBUG
debug = fopen("/tmp/trace.out", "w");
PQtrace(conn, debug);
#endif /* DEBUG */
#endif /* DEBUG */
/* start a transaction block */
res = PQexec(conn, "BEGIN");
@@ -127,7 +127,7 @@ main()
#ifdef DEBUG
fclose(debug);
#endif /* DEBUG */
#endif /* DEBUG */
return 0;
}

View File

@@ -1,5 +1,5 @@
/*
* $Header: /cvsroot/pgsql/src/test/regress/regress.c,v 1.48 2001/08/16 20:38:56 tgl Exp $
* $Header: /cvsroot/pgsql/src/test/regress/regress.c,v 1.49 2001/11/05 17:46:40 momjian Exp $
*/
#include "postgres.h"
@@ -214,7 +214,7 @@ typedef struct
{
Point center;
double radius;
} WIDGET;
} WIDGET;
WIDGET *widget_in(char *str);
char *widget_out(WIDGET * widget);