From: Robert Haas Date: Wed, 28 Sep 2016 16:38:33 +0000 (-0400) Subject: worker_spi: Call pgstat_report_stat. X-Git-Tag: REL_10_BETA1~1658 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4929704acb3b4cdde8e890af977cdacaf1ac2ccb;p=thirdparty%2Fpostgresql.git worker_spi: Call pgstat_report_stat. Without this, statistics changes accumulated by the worker never get reported to the stats collector, which is bad. Julien Rouhaud --- diff --git a/src/test/modules/worker_spi/worker_spi.c b/src/test/modules/worker_spi/worker_spi.c index 314e371b7f6..7c9a3eb67e3 100644 --- a/src/test/modules/worker_spi/worker_spi.c +++ b/src/test/modules/worker_spi/worker_spi.c @@ -292,6 +292,7 @@ worker_spi_main(Datum main_arg) SPI_finish(); PopActiveSnapshot(); CommitTransactionCommand(); + pgstat_report_stat(false); pgstat_report_activity(STATE_IDLE, NULL); }