@@ -3182,8 +3182,9 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
31823182 * we weren't looking, start over.
31833183 */
31843184 if ((oldtup .t_data -> t_infomask & HEAP_XMAX_IS_MULTI ) ||
3185- !TransactionIdEquals (HeapTupleHeaderGetRawXmax (oldtup .t_data ),
3186- xwait ))
3185+ !TransactionIdEquals (
3186+ HeapTupleHeaderGetRawXmax (oldtup .t_data ),
3187+ xwait ))
31873188 goto l2 ;
31883189
31893190 can_continue = true;
@@ -3201,8 +3202,9 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
32013202 * this point. Check for xmax change, and start over if so.
32023203 */
32033204 if ((oldtup .t_data -> t_infomask & HEAP_XMAX_IS_MULTI ) ||
3204- !TransactionIdEquals (HeapTupleHeaderGetRawXmax (oldtup .t_data ),
3205- xwait ))
3205+ !TransactionIdEquals (
3206+ HeapTupleHeaderGetRawXmax (oldtup .t_data ),
3207+ xwait ))
32063208 goto l2 ;
32073209
32083210 /* Otherwise check if it committed or aborted */
@@ -4183,8 +4185,9 @@ heap_lock_tuple(Relation relation, HeapTuple tuple,
41834185
41844186 /* if the xmax changed in the meantime, start over */
41854187 if ((tuple -> t_data -> t_infomask & HEAP_XMAX_IS_MULTI ) ||
4186- !TransactionIdEquals (HeapTupleHeaderGetRawXmax (tuple -> t_data ),
4187- xwait ))
4188+ !TransactionIdEquals (
4189+ HeapTupleHeaderGetRawXmax (tuple -> t_data ),
4190+ xwait ))
41884191 goto l3 ;
41894192 /* otherwise, we're good */
41904193 require_sleep = false;
@@ -4246,8 +4249,9 @@ heap_lock_tuple(Relation relation, HeapTuple tuple,
42464249 * for xmax change, and start over if so.
42474250 */
42484251 if (!(tuple -> t_data -> t_infomask & HEAP_XMAX_IS_MULTI ) ||
4249- !TransactionIdEquals (HeapTupleHeaderGetRawXmax (tuple -> t_data ),
4250- xwait ))
4252+ !TransactionIdEquals (
4253+ HeapTupleHeaderGetRawXmax (tuple -> t_data ),
4254+ xwait ))
42514255 goto l3 ;
42524256
42534257 /*
@@ -4300,8 +4304,9 @@ heap_lock_tuple(Relation relation, HeapTuple tuple,
43004304 * this point. Check for xmax change, and start over if so.
43014305 */
43024306 if ((tuple -> t_data -> t_infomask & HEAP_XMAX_IS_MULTI ) ||
4303- !TransactionIdEquals (HeapTupleHeaderGetRawXmax (tuple -> t_data ),
4304- xwait ))
4307+ !TransactionIdEquals (
4308+ HeapTupleHeaderGetRawXmax (tuple -> t_data ),
4309+ xwait ))
43054310 goto l3 ;
43064311
43074312 /*
0 commit comments