aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2017-04-03 23:07:31 -0400
committerRobert Haas <rhaas@postgresql.org>2017-04-03 23:07:31 -0400
commitc8b5c3cb06addfb11d38a85fd8ac7efabb56e811 (patch)
tree60312ff75cb5d4afc478804aa32e0c94ff9c06fb
parent7cdf6668cf37f48808604906882f6131d3fef251 (diff)
downloadpostgresql-c8b5c3cb06addfb11d38a85fd8ac7efabb56e811.tar.gz
postgresql-c8b5c3cb06addfb11d38a85fd8ac7efabb56e811.zip
Update comment.
Craig Ringer, reviewed by me.
-rw-r--r--src/backend/storage/ipc/procarray.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c
index 7c2e1e1c854..fb39bdc2f59 100644
--- a/src/backend/storage/ipc/procarray.c
+++ b/src/backend/storage/ipc/procarray.c
@@ -1493,7 +1493,8 @@ GetMaxSnapshotSubxidCount(void)
* older than this are known not running any more.
* RecentGlobalXmin: the global xmin (oldest TransactionXmin across all
* running transactions, except those running LAZY VACUUM). This is
- * the same computation done by GetOldestXmin(true, true).
+ * the same computation done by
+ * GetOldestXmin(NULL, PROCARRAY_FLAGS_VACUUM).
* RecentGlobalDataXmin: the global xmin for non-catalog tables
* >= RecentGlobalXmin
*