diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-02 13:23:52 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-02 13:23:52 -0400 |
commit | 2e53bd5517431637e495c7614761e5aae46b4eba (patch) | |
tree | 6bcf76fe5760fe05b91e92ca6e6681b1cc39d93e /src/backend/storage/buffer/bufmgr.c | |
parent | 89df948ec26679e09f71baf6bbb9b06f9d329712 (diff) | |
download | postgresql-2e53bd5517431637e495c7614761e5aae46b4eba.tar.gz postgresql-2e53bd5517431637e495c7614761e5aae46b4eba.zip |
Fix incorrect initialization of ProcGlobal->startupBufferPinWaitBufId.
It was initialized in the wrong place and to the wrong value. With bad
luck this could result in incorrect query-cancellation failures in hot
standby sessions, should a HS backend be holding pin on buffer number 1
while trying to acquire a lock.
Diffstat (limited to 'src/backend/storage/buffer/bufmgr.c')
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 5420dbe61a1..4c7cfb0b404 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -2449,10 +2449,11 @@ LockBufferForCleanup(Buffer buffer) /* Wait to be signaled by UnpinBuffer() */ if (InHotStandby) { - /* Share the bufid that Startup process waits on */ + /* Publish the bufid that Startup process waits on */ SetStartupBufferPinWaitBufId(buffer - 1); /* Set alarm and then wait to be signaled by UnpinBuffer() */ ResolveRecoveryConflictWithBufferPin(); + /* Reset the published bufid */ SetStartupBufferPinWaitBufId(-1); } else |