aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2023-09-28 19:45:01 +0900
committerEtsuro Fujita <efujita@postgresql.org>2023-09-28 19:45:01 +0900
commit8bdfc53be48ae99109a05df1dfd203d35207733f (patch)
tree9fd3bb950489cd3e18b86da992320c1135aedc53 /src
parent8d05be93197cd37ef232bd367bb46fa932a557b9 (diff)
downloadpostgresql-8bdfc53be48ae99109a05df1dfd203d35207733f.tar.gz
postgresql-8bdfc53be48ae99109a05df1dfd203d35207733f.zip
Fix typo in src/backend/access/transam/README.
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/README b/src/backend/access/transam/README
index 22c8ae97551..6de2378748a 100644
--- a/src/backend/access/transam/README
+++ b/src/backend/access/transam/README
@@ -324,7 +324,7 @@ changes much more often than its xid, having GetSnapshotData look at xmins
can lead to a lot of unnecessary cacheline ping-pong. Instead
GetSnapshotData updates approximate thresholds (one that guarantees that all
deleted rows older than it can be removed, another determining that deleted
-rows newer than it can not be removed). GlobalVisTest* uses those threshold
+rows newer than it can not be removed). GlobalVisTest* uses those thresholds
to make invisibility decision, falling back to ComputeXidHorizons if
necessary.