]> granicus.if.org Git - postgresql/commit
Fix an assertion failure related to an exclusive backup.
authorFujii Masao <fujii@postgresql.org>
Tue, 17 Jan 2017 08:32:45 +0000 (17:32 +0900)
committerFujii Masao <fujii@postgresql.org>
Tue, 17 Jan 2017 08:32:45 +0000 (17:32 +0900)
commitc73157ca0e058806a956b8126f158dcb513b1881
treeec878947b5eab7ab76da7b9fc7272cd0fd731aea
parent5e1e2e75d25b7fd7152fa2b41998efd2dac9c275
Fix an assertion failure related to an exclusive backup.

Previously multiple sessions could execute pg_start_backup() and
pg_stop_backup() to start and stop an exclusive backup at the same time.
This could trigger the assertion failure of
"FailedAssertion("!(XLogCtl->Insert.exclusiveBackup)".
This happend because, even while pg_start_backup() was starting
an exclusive backup, other session could run pg_stop_backup()
concurrently and mark the backup as not-in-progress unconditionally.

This patch introduces ExclusiveBackupState indicating the state of
an exclusive backup. This state is used to ensure that there is only
one session running pg_start_backup() or pg_stop_backup() at
the same time, to avoid the assertion failure.

Back-patch to all supported versions.

Author: Michael Paquier
Reviewed-By: Kyotaro Horiguchi and me
Reported-By: Andreas Seltenreich
Discussion: <87mvktojme.fsf@credativ.de>
src/backend/access/transam/xlog.c