diff options
-rw-r--r-- | src/backend/access/transam/multixact.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c index 5875ca18270..5369dbae324 100644 --- a/src/backend/access/transam/multixact.c +++ b/src/backend/access/transam/multixact.c @@ -383,6 +383,21 @@ MultiXactIdIsRunning(MultiXactId multi) debug_elog3(DEBUG2, "IsRunning %u?", multi); + /* + * During recovery, all multixacts can be considered not running: in + * effect, tuple locks are not held in standby servers, which is fine + * because the standby cannot acquire further tuple locks nor update/delete + * tuples. + * + * We need to do this first, because GetMultiXactIdMembers complains if + * called on recovery. + */ + if (RecoveryInProgress()) + { + debug_elog2(DEBUG2, "IsRunning: in recovery"); + return false; + } + nmembers = GetMultiXactIdMembers(multi, &members); if (nmembers < 0) |