diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-04-30 16:37:08 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-04-30 16:37:08 +0000 |
commit | 641912b4d17fd214a5e5bae4e7bb9ddbc28b144b (patch) | |
tree | 6f8b0b8cdb0e00248bd269c1cf25bec57f49cda4 /src/backend/tcop/postgres.c | |
parent | 957d08c81f9cc277725c83b9381c5154b6318a5e (diff) | |
download | postgresql-641912b4d17fd214a5e5bae4e7bb9ddbc28b144b.tar.gz postgresql-641912b4d17fd214a5e5bae4e7bb9ddbc28b144b.zip |
Fix oversight in my patch of yesterday: forgot to ensure that stats would
still be forced out at backend exit.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index acf12dae6f1..724f2e028d0 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.532 2007/04/16 18:21:07 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.533 2007/04/30 16:37:08 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -3444,7 +3444,7 @@ PostgresMain(int argc, char *argv[], const char *username) } else { - pgstat_report_tabstat(); + pgstat_report_tabstat(false); set_ps_display("idle", false); pgstat_report_activity("<IDLE>"); |