diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-03-10 15:00:20 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-03-10 15:00:20 -0500 |
commit | e397d2ee6474865becb8f99ac28586736788f1f2 (patch) | |
tree | e7a40a28136591dde36d584dec3c8b337fd44f43 | |
parent | 64360987953e450e53098e6b79d89c5b80dc7842 (diff) | |
download | postgresql-e397d2ee6474865becb8f99ac28586736788f1f2.tar.gz postgresql-e397d2ee6474865becb8f99ac28586736788f1f2.zip |
Remove obsolete comment.
In earlier versions of the sync rep patch, waiters removed themselves from
the queue, but now walsender removes them before doing the wakeup.
Report by Fujii Masao.
-rw-r--r-- | src/include/replication/walsender.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/replication/walsender.h b/src/include/replication/walsender.h index 8a8c9398d1c..2e5b2096ead 100644 --- a/src/include/replication/walsender.h +++ b/src/include/replication/walsender.h @@ -74,8 +74,7 @@ typedef struct /* * Current location of the head of the queue. All waiters should have - * a waitLSN that follows this value, or they are currently being woken - * to remove themselves from the queue. Protected by SyncRepLock. + * a waitLSN that follows this value. Protected by SyncRepLock. */ XLogRecPtr lsn; |