mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03:00
Fix incorrect logic in HaveRegisteredOrActiveSnapshot().
This function gave the wrong answer when there's more than one RegisteredSnapshots entry, whether or not any of them is the CatalogSnapshot. This leads to assertion failure in some scenarios involving fetching toasted data using a cursor. (As per discussion, I'm dubious that this is the right contract to be enforcing at all; but it surely doesn't help to be enforcing it incorrectly.) Fetching toasted data using a cursor is evidently under-tested, so add a test case too. Per report from Erik Rijkers. This is new code, so no need for back-patch. Discussion: https://postgr.es/m/dc9dd229-ed30-6c62-4c41-d733ffff776b@xs4all.nl
This commit is contained in:
@@ -1646,11 +1646,11 @@ HaveRegisteredOrActiveSnapshot(void)
|
||||
* removed at any time due to invalidation processing. If explicitly
|
||||
* registered more than one snapshot has to be in RegisteredSnapshots.
|
||||
*/
|
||||
if (pairingheap_is_empty(&RegisteredSnapshots) ||
|
||||
!pairingheap_is_singular(&RegisteredSnapshots))
|
||||
if (CatalogSnapshot != NULL &&
|
||||
pairingheap_is_singular(&RegisteredSnapshots))
|
||||
return false;
|
||||
|
||||
return CatalogSnapshot == NULL;
|
||||
return !pairingheap_is_empty(&RegisteredSnapshots);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user