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/commands/async.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/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index ae6b2f91374..969d2974615 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.131 2006/04/25 14:11:54 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.132 2006/06/27 22:16:43 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -908,7 +908,7 @@ ProcessIncomingNotify(void) if (Trace_notify) elog(DEBUG1, "ProcessIncomingNotify"); - set_ps_display("notify interrupt"); + set_ps_display("notify interrupt", false); notifyInterruptOccurred = 0; @@ -979,7 +979,7 @@ ProcessIncomingNotify(void) */ pq_flush(); - set_ps_display("idle"); + set_ps_display("idle", false); if (Trace_notify) elog(DEBUG1, "ProcessIncomingNotify: done"); |