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:50:40 +0200 |
commit | 5da060626089a3c67b1b12fa75733fb39ebe1bbb (patch) | |
tree | 6f8a682d00ea8c1cd1fc973423109285341f286d /src/backend/access/transam/xlog.c | |
parent | 67016c39703aa09ea7faf08dc3ec1456f92a832b (diff) | |
download | postgresql-5da060626089a3c67b1b12fa75733fb39ebe1bbb.tar.gz postgresql-5da060626089a3c67b1b12fa75733fb39ebe1bbb.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 49bb4538c93..fa79b502e1e 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -127,7 +127,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; |