From: Alvaro Herrera Date: Fri, 17 Dec 2010 21:51:22 +0000 (-0300) Subject: set_ps_display when calling functions via fastpath X-Git-Tag: REL9_1_ALPHA3~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3026027ec3a795745e8e80fc9f204bebc97be58e;p=postgresql set_ps_display when calling functions via fastpath This improves tag output by log_line_prefix --- diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index ff2e9bd0aa..e690cdbf39 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -3994,8 +3994,9 @@ PostgresMain(int argc, char *argv[], const char *username) /* Set statement_timestamp() */ SetCurrentStatementStartTimestamp(); - /* Tell the collector what we're doing */ + /* Report query to various monitoring facilities. */ pgstat_report_activity(" function call"); + set_ps_display("", false); /* start an xact for this function invocation */ start_xact_command();