aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-02-18 09:48:18 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-02-18 09:50:29 +0200
commit535b435c217ca8210c25bb59efa01381aaf413c8 (patch)
tree0f52cd626361f736207538982bdec8f0d21778c4
parentdc68985c2a8968d3f52c4577f036e785fe31ab31 (diff)
downloadpostgresql-535b435c217ca8210c25bb59efa01381aaf413c8.tar.gz
postgresql-535b435c217ca8210c25bb59efa01381aaf413c8.zip
Fix comment; checkpointer, not bgwriter, performs checkpoints since 9.2.
Amit Langote
-rw-r--r--src/backend/access/transam/xlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 93ee0709801..314b9e97fae 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -124,7 +124,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;