diff options
author | Bruce Momjian | 2001-10-28 06:26:15 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-10-28 06:26:15 +0000 |
commit | 365383703ac0a88c6737e14c48ab14e878cd778c (patch) | |
tree | 04e502fe1652ab8ec2bf42ea0b31ea9586165af5 /src/backend/tcop/postgres.c | |
parent | acc90a66efe40627e7a5f09a04ad9c497ddc5003 (diff) |
Another pgindent run. Fixes enum indenting, and improves #endif
spacing. Also adds space for one-line comments.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 1501cf97b5..37abe7ce50 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -324,7 +324,7 @@ ReadCommand(StringInfo inBuf) */ List * pg_parse_and_rewrite(char *query_string, /* string to execute */ - Oid *typev,/* parameter types */ + Oid *typev, /* parameter types */ int nargs) /* number of parameters */ { List *raw_parsetree_list; @@ -1502,7 +1502,7 @@ PostgresMain(int argc, char *argv[], const char *username) pqsignal(SIGHUP, SigHupHandler); /* set flag to read config file */ pqsignal(SIGINT, QueryCancelHandler); /* cancel current query */ pqsignal(SIGTERM, die); /* cancel current query and exit */ - pqsignal(SIGQUIT, quickdie); /* hard crash time */ + pqsignal(SIGQUIT, quickdie); /* hard crash time */ pqsignal(SIGALRM, HandleDeadLock); /* check for deadlock after * timeout */ @@ -1642,7 +1642,7 @@ PostgresMain(int argc, char *argv[], const char *username) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.239 $ $Date: 2001/10/25 05:49:43 $\n"); + puts("$Revision: 1.240 $ $Date: 2001/10/28 06:25:51 $\n"); } /* @@ -2049,4 +2049,5 @@ assertTest(int val) return val; } #endif + #endif |