@@ -483,10 +483,9 @@ SerializationNeededForRead(Relation relation, Snapshot snapshot)
483483 * MySerializableXact, so that subsequent calls to this function can exit
484484 * quickly.
485485 *
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.
490489 */
491490if (SxactIsROSafe (MySerializableXact ))
492491{
@@ -498,7 +497,7 @@ SerializationNeededForRead(Relation relation, Snapshot snapshot)
498497if (!PredicateLockingNeededForRelation (relation ))
499498return false;
500499
501- return true;/* no excuse to skip predicate locking */
500+ return true;/* no excuse to skip predicate locking */
502501}
503502
504503/*
@@ -516,7 +515,7 @@ SerializationNeededForWrite(Relation relation)
516515if (!PredicateLockingNeededForRelation (relation ))
517516return false;
518517
519- return true;/* no excuse to skip predicate locking */
518+ return true;/* no excuse to skip predicate locking */
520519}
521520
522521