Fix silly mistake in Assert
authorAlvaro Herrera
Tue, 4 Jan 2022 16:21:23 +0000 (13:21 -0300)
committerAlvaro Herrera
Tue, 4 Jan 2022 16:21:23 +0000 (13:21 -0300)
src/backend/access/heap/heapam.c

index 225c4fa5e50093e1c1e623def440ad88d3a764f5..114a96954a643e9f9237c76071e837a993d20154 100644 (file)
@@ -4778,7 +4778,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;