@@ -3182,8 +3182,9 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
3182
3182
* we weren't looking, start over.
3183
3183
*/
3184
3184
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 ))
3187
3188
goto l2 ;
3188
3189
3189
3190
can_continue = true;
@@ -3201,8 +3202,9 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
3201
3202
* this point. Check for xmax change, and start over if so.
3202
3203
*/
3203
3204
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 ))
3206
3208
goto l2 ;
3207
3209
3208
3210
/* Otherwise check if it committed or aborted */
@@ -4183,8 +4185,9 @@ heap_lock_tuple(Relation relation, HeapTuple tuple,
4183
4185
4184
4186
/* if the xmax changed in the meantime, start over */
4185
4187
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 ))
4188
4191
goto l3 ;
4189
4192
/* otherwise, we're good */
4190
4193
require_sleep = false;
@@ -4246,8 +4249,9 @@ heap_lock_tuple(Relation relation, HeapTuple tuple,
4246
4249
* for xmax change, and start over if so.
4247
4250
*/
4248
4251
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 ))
4251
4255
goto l3 ;
4252
4256
4253
4257
/*
@@ -4300,8 +4304,9 @@ heap_lock_tuple(Relation relation, HeapTuple tuple,
4300
4304
* this point. Check for xmax change, and start over if so.
4301
4305
*/
4302
4306
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 ))
4305
4310
goto l3 ;
4306
4311
4307
4312
/*
0 commit comments