diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-02-02 21:08:53 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-02-02 21:08:53 -0500 |
commit | 0af695fd43b6889613a4035e3cdfcc0fc1b7936a (patch) | |
tree | 634992f6a66dc788021a772e4aecb6b5c9e60797 /doc/src | |
parent | cd7d748d51df3c5dedcc49a3603e6fa9c050f237 (diff) | |
download | postgresql-0af695fd43b6889613a4035e3cdfcc0fc1b7936a.tar.gz postgresql-0af695fd43b6889613a4035e3cdfcc0fc1b7936a.zip |
Log restartpoints in the same fashion as checkpoints.
Prior to 9.0, restartpoints never created, deleted, or recycled WAL
files, but now they can. This code makes log_checkpoints treat
checkpoints and restartpoints symmetrically. It also adjusts up
the documentation of the parameter to mention restartpoints.
Fujii Masao. Docs by me, as suggested by Itagaki Takahiro.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 9e08c5addd0..68c946245d0 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -3362,10 +3362,9 @@ local0.* /var/log/postgresql </indexterm> <listitem> <para> - Causes checkpoints to be logged in the server log. Some - statistics about each checkpoint are included in the log messages, - including the number of buffers written and the time spent writing - them. + Causes checkpoints and restartpoints to be logged in the server log. + Some statistics are included in the log messages, including the number + of buffers written and the time spent writing them. This parameter can only be set in the <filename>postgresql.conf</> file or on the server command line. The default is off. </para> |