From 370a709c75becffba230a3fa14747a134b7d55b4 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 27 Jun 2006 22:16:44 +0000 Subject: Add GUC update_process_title to control whether 'ps' display is updated for every command, default to on. --- src/backend/commands/async.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/commands/async.c') 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"); -- cgit v1.2.3