diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-07-29 12:28:30 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-07-29 12:28:30 +0900 |
commit | eb43f3d19324d7e5376b1f57fc2e5c142a6b5f3d (patch) | |
tree | bf891accfbaff49a006960ebdfd4f1f8e12d4252 /src/backend/access/transam/xlog.c | |
parent | 7cce159349ccdb39ade07f869f08e4929ef2fe0b (diff) | |
download | postgresql-eb43f3d19324d7e5376b1f57fc2e5c142a6b5f3d.tar.gz postgresql-eb43f3d19324d7e5376b1f57fc2e5c142a6b5f3d.zip |
Fix inconsistencies and typos in the tree
This is numbered take 8, and addresses again a set of issues with code
comments, variable names and unreferenced variables.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/b137b5eb-9c95-9c2f-586e-38aba7d59788@gmail.com
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index da3d2509860..f5535238573 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -1796,11 +1796,11 @@ WaitXLogInsertionsToFinish(XLogRecPtr upto) do { /* - * See if this insertion is in progress. LWLockWait will wait for - * the lock to be released, or for the 'value' to be set by a - * LWLockUpdateVar call. When a lock is initially acquired, its - * value is 0 (InvalidXLogRecPtr), which means that we don't know - * where it's inserting yet. We will have to wait for it. If + * See if this insertion is in progress. LWLockWaitForVar will + * wait for the lock to be released, or for the 'value' to be set + * by a LWLockUpdateVar call. When a lock is initially acquired, + * its value is 0 (InvalidXLogRecPtr), which means that we don't + * know where it's inserting yet. We will have to wait for it. If * it's a small insertion, the record will most likely fit on the * same page and the inserter will release the lock without ever * calling LWLockUpdateVar. But if it has to sleep, it will @@ -6024,7 +6024,10 @@ recoveryApplyDelay(XLogReaderState *record) TimestampDifference(GetCurrentTimestamp(), recoveryDelayUntilTime, &secs, µsecs); - /* NB: We're ignoring waits below min_apply_delay's resolution. */ + /* + * NB: We're ignoring waits below recovery_min_apply_delay's + * resolution. + */ if (secs <= 0 && microsecs / 1000 <= 0) break; |