@@ -483,10 +483,9 @@ SerializationNeededForRead(Relation relation, Snapshot snapshot)
483
483
* MySerializableXact, so that subsequent calls to this function can exit
484
484
* quickly.
485
485
*
486
- * A transaction is flagged as RO_SAFE if all concurrent R/W
487
- * transactions commit without having conflicts out to an earlier
488
- * snapshot, thus ensuring that no conflicts are possible for this
489
- * transaction.
486
+ * A transaction is flagged as RO_SAFE if all concurrent R/W transactions
487
+ * commit without having conflicts out to an earlier snapshot, thus
488
+ * ensuring that no conflicts are possible for this transaction.
490
489
*/
491
490
if (SxactIsROSafe (MySerializableXact ))
492
491
{
@@ -498,7 +497,7 @@ SerializationNeededForRead(Relation relation, Snapshot snapshot)
498
497
if (!PredicateLockingNeededForRelation (relation ))
499
498
return false;
500
499
501
- return true;/* no excuse to skip predicate locking */
500
+ return true;/* no excuse to skip predicate locking */
502
501
}
503
502
504
503
/*
@@ -516,7 +515,7 @@ SerializationNeededForWrite(Relation relation)
516
515
if (!PredicateLockingNeededForRelation (relation ))
517
516
return false;
518
517
519
- return true;/* no excuse to skip predicate locking */
518
+ return true;/* no excuse to skip predicate locking */
520
519
}
521
520
522
521