diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2023-10-06 18:30:03 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2023-10-06 18:30:03 +0900 |
commit | bb912563059c789932efc423ad2092b7638249be (patch) | |
tree | 77d5d29e056e1752dccba47b6c40e56beceb67dc | |
parent | 689af6db6c76a7966efdb702326f85fa0d8a04ef (diff) | |
download | postgresql-bb912563059c789932efc423ad2092b7638249be.tar.gz postgresql-bb912563059c789932efc423ad2092b7638249be.zip |
Remove extra parenthesis from comment.
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index 1623a11f0dd..4655d8cff51 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -2176,7 +2176,7 @@ GetSnapshotDataReuse(Snapshot snapshot) * GetSnapshotData() cannot change while ProcArrayLock is held. Snapshot * contents only depend on transactions with xids and xactCompletionCount * is incremented whenever a transaction with an xid finishes (while - * holding ProcArrayLock) exclusively). Thus the xactCompletionCount check + * holding ProcArrayLock exclusively). Thus the xactCompletionCount check * ensures we would detect if the snapshot would have changed. * * As the snapshot contents are the same as it was before, it is safe to |