summaryrefslogtreecommitdiff
path: root/src/backend/storage/lmgr/predicate.c
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2016-04-01 21:53:10 -0400
committerNoah Misch <noah@leadboat.com>2016-04-01 21:53:10 -0400
commit4ad6f13500cd9a3ca0652e43232f9515319e55e2 (patch)
treea61b2e89bff781ca7831ab1dc3613478993d7478 /src/backend/storage/lmgr/predicate.c
parentf07d18b6e94da6ef93dc4e00096f1e7542814fdb (diff)
Copyedit comments and documentation.
Diffstat (limited to 'src/backend/storage/lmgr/predicate.c')
-rw-r--r--src/backend/storage/lmgr/predicate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/lmgr/predicate.c b/src/backend/storage/lmgr/predicate.c
index 026d2b9ab7a..7cdb35541bf 100644
--- a/src/backend/storage/lmgr/predicate.c
+++ b/src/backend/storage/lmgr/predicate.c
@@ -496,8 +496,8 @@ SerializationNeededForRead(Relation relation, Snapshot snapshot)
* Don't acquire locks or conflict when scanning with a special snapshot.
* This excludes things like CLUSTER and REINDEX. They use the wholesale
* functions TransferPredicateLocksToHeapRelation() and
- * CheckTableForSerializableConflictIn() to participate serialization, but
- * the scans involved don't need serialization.
+ * CheckTableForSerializableConflictIn() to participate in serialization,
+ * but the scans involved don't need serialization.
*/
if (!IsMVCCSnapshot(snapshot))
return false;