summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2015-03-04 12:25:48 +0900
committerFujii Masao <fujii@postgresql.org>2015-03-04 12:25:48 +0900
commitf8b031bca848a21fb9a7c9530f8cdc7eb6919dd9 (patch)
tree528adf6234cb36bf31255a153592d7fa91553d46
parent497bac7d290df13d8b00ba48653a96015ff4741b (diff)
Fix an obsolete reference to SnapshotNow in comment.
Peter Geoghegan
-rw-r--r--src/backend/replication/logical/snapbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/snapbuild.c b/src/backend/replication/logical/snapbuild.c
index e91145328a8..ff5ff265e60 100644
--- a/src/backend/replication/logical/snapbuild.c
+++ b/src/backend/replication/logical/snapbuild.c
@@ -1077,7 +1077,7 @@ SnapBuildCommitTxn(SnapBuild *builder, XLogRecPtr lsn, TransactionId xid,
/* refcount of the snapshot builder for the new snapshot */
SnapBuildSnapIncRefcount(builder->snapshot);
- /* add a new SnapshotNow to all currently running transactions */
+ /* add a new Snapshot to all currently running transactions */
SnapBuildDistributeNewCatalogSnapshot(builder, lsn);
}
else