diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-06-27 22:16:44 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-06-27 22:16:44 +0000 |
commit | 370a709c75becffba230a3fa14747a134b7d55b4 (patch) | |
tree | 87637e2543c307e08a19ae57a5022b7b6299b263 /src/backend/bootstrap/bootstrap.c | |
parent | 69d0a15e2aa15a2ee851df33f5c15fa227c47bd7 (diff) | |
download | postgresql-370a709c75becffba230a3fa14747a134b7d55b4.tar.gz postgresql-370a709c75becffba230a3fa14747a134b7d55b4.zip |
Add GUC update_process_title to control whether 'ps' display is updated
for every command, default to on.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 8acac3ad449..28d17d052a5 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/bootstrap/bootstrap.c,v 1.217 2006/06/18 15:38:36 petere Exp $ + * $PostgreSQL: pgsql/src/backend/bootstrap/bootstrap.c,v 1.218 2006/06/27 22:16:43 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -353,8 +353,7 @@ BootstrapMain(int argc, char *argv[]) statmsg = "??? process"; break; } - init_ps_display(statmsg, "", ""); - set_ps_display(""); + init_ps_display(statmsg, "", "", ""); } /* Acquire configuration parameters, unless inherited from postmaster */ |