]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix silly mistake in Assert
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 4 Jan 2022 16:21:23 +0000 (13:21 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 4 Jan 2022 16:21:23 +0000 (13:21 -0300)
src/backend/access/heap/heapam.c

index a9ea6d83eaed8ccfefbd28e006a7c1b3a03bf1b2..24d39327c999342a42f6f971a37b03409a7449b1 100644 (file)
@@ -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;