diff options
author | Michael Paquier | 2019-07-08 04:15:09 +0000 |
---|---|---|
committer | Michael Paquier | 2019-07-08 04:15:09 +0000 |
commit | 6b8548964bccd0f2e65c687d591b7345d5146bfa (patch) | |
tree | 29cddb4e0aa0bc59b02850daf6f508394f8f0ec1 /src/backend/storage/smgr/md.c | |
parent | 7e9a4c5c3dca0d9637812d8991e96fc8f46800d9 (diff) |
Fix inconsistencies in the code
This addresses a couple of issues in the code:
- Typos and inconsistencies in comments and function declarations.
- Removal of unreferenced function declarations.
- Removal of unnecessary compile flags.
- A cleanup error in regressplans.sh.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/storage/smgr/md.c')
-rw-r--r-- | src/backend/storage/smgr/md.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/storage/smgr/md.c b/src/backend/storage/smgr/md.c index 64acc3fa433..58c94e9257a 100644 --- a/src/backend/storage/smgr/md.c +++ b/src/backend/storage/smgr/md.c @@ -1163,9 +1163,6 @@ _mdfd_getseg(SMgrRelation reln, ForkNumber forknum, BlockNumber blkno, * replaying WAL data that has a write into a high-numbered * segment of a relation that was later deleted. We want to go * ahead and create the segments so we can finish out the replay. - * However if the caller has specified - * EXTENSION_REALLY_RETURN_NULL, then extension is not desired - * even in recovery; we won't reach this point in that case. * * We have to maintain the invariant that segments before the last * active segment are of size RELSEG_SIZE; therefore, if |