@@ -3443,7 +3443,7 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
3443
3443
3444
3444
/*
3445
3445
* To prevent concurrent sessions from updating the tuple, we have to
3446
- * temporarily mark it locked, while we release the lock.
3446
+ * temporarily mark it locked, while we release thepage-level lock.
3447
3447
*
3448
3448
* To satisfy the rule that any xid potentially appearing in a buffer
3449
3449
* written out to disk, we unfortunately have to WAL log this
@@ -3455,8 +3455,9 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
3455
3455
3456
3456
/*
3457
3457
* Compute xmax / infomask appropriate for locking the tuple. This has
3458
- * to be done separately from the lock, because the potentially
3459
- * created multixact would otherwise be wrong.
3458
+ * to be done separately from the combo that's going to be used for
3459
+ * updating, because the potentially created multixact would otherwise
3460
+ * be wrong.
3460
3461
*/
3461
3462
compute_new_xmax_infomask (HeapTupleHeaderGetRawXmax (oldtup .t_data ),
3462
3463
oldtup .t_data -> t_infomask ,