From: Alvaro Herrera Date: Tue, 4 Jan 2022 16:21:23 +0000 (-0300) Subject: Fix silly mistake in Assert X-Git-Tag: REL_12_10~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=397b43948861155893da0f04b4de8e7ff021636f;p=thirdparty%2Fpostgresql.git Fix silly mistake in Assert --- diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index a9ea6d83eae..24d39327c99 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -4536,7 +4536,8 @@ failed: * this assert is slightly different from the equivalent one in * heap_delete and heap_update. */ - Assert(TM_WouldBlock || !(tuple->t_data->t_infomask & HEAP_XMAX_INVALID)); + Assert((result == TM_WouldBlock) || + !(tuple->t_data->t_infomask & HEAP_XMAX_INVALID)); Assert(result != TM_Updated || !ItemPointerEquals(&tuple->t_self, &tuple->t_data->t_ctid)); tmfd->ctid = tuple->t_data->t_ctid;