diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-02-18 09:48:18 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-02-18 09:48:18 +0200 |
commit | 057152b37c8dbbddf87de2be32314a3d4fec5d5e (patch) | |
tree | e31d4e8cc2c8fd16fb4df0b6094e5ad5fc4e7167 /src/backend/access/transam/xlog.c | |
parent | 7b1fab3fd2e17063fb1ec98e8ff5512a6b3da9b6 (diff) | |
download | postgresql-057152b37c8dbbddf87de2be32314a3d4fec5d5e.tar.gz postgresql-057152b37c8dbbddf87de2be32314a3d4fec5d5e.zip |
Fix comment; checkpointer, not bgwriter, performs checkpoints since 9.2.
Amit Langote
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 76c244c915f..78b8f4695c3 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -128,7 +128,7 @@ const struct config_enum_entry sync_method_options[] = { /* * Statistics for current checkpoint are collected in this global struct. - * Because only the background writer or a stand-alone backend can perform + * Because only the checkpointer or a stand-alone backend can perform * checkpoints, this will be unused in normal backends. */ CheckpointStatsData CheckpointStats; |