diff options
author | David Rowley <drowley@postgresql.org> | 2023-11-10 00:17:07 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2023-11-10 00:17:07 +1300 |
commit | 456d697bae081ae77ff222375cf0704316041f88 (patch) | |
tree | 39d6c1c4bf9733debc9195c876215854702f32d6 /src/backend/access/heap/hio.c | |
parent | 308a69a9878212bc2f96279023ce16070dac9214 (diff) |
Ensure we use the correct spelling of "ensure"
We seem to have accidentally used "insure" in a few places. Correct
that.
Author: Peter Smith
Discussion: https://postgr.es/m/CAHut+Pv0biqrhA3pMhu40aDsj343mTsD75khKnHsLqR8P04f=Q@mail.gmail.com
Backpatch-through: 12, oldest supported version
Diffstat (limited to 'src/backend/access/heap/hio.c')
-rw-r--r-- | src/backend/access/heap/hio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/hio.c b/src/backend/access/heap/hio.c index b0ece666293..6e1ff45ca43 100644 --- a/src/backend/access/heap/hio.c +++ b/src/backend/access/heap/hio.c @@ -387,7 +387,7 @@ RelationGetBufferForTuple(Relation relation, Size len, * on, as cached in the BulkInsertState or relcache entry. If that * doesn't work, we ask the Free Space Map to locate a suitable page. * Since the FSM's info might be out of date, we have to be prepared to - * loop around and retry multiple times. (To insure this isn't an infinite + * loop around and retry multiple times. (To ensure this isn't an infinite * loop, we must update the FSM with the correct amount of free space on * each page that proves not to be suitable.) If the FSM has no record of * a page with enough free space, we give up and extend the relation. |