From: Alvaro Herrera Date: Tue, 4 Jan 2022 16:21:23 +0000 (-0300) Subject: Fix silly mistake in Assert X-Git-Tag: REL_13_6~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=33fdd9f854f8db263d96e2916aa67325b8b26992;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 827c43e0ccb..0807b4031e6 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -4505,7 +4505,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;