diff options
author | Thomas Munro <tmunro@postgresql.org> | 2023-10-16 13:23:51 +1300 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2023-10-16 13:32:55 +1300 |
commit | 3090213690bd69dd46dae865a2021982e7309208 (patch) | |
tree | cbb0be9e65e58e1573c84e0f3e2cc6f501a2ed66 /src | |
parent | 2371432cd6b93415ef99e7ef35598f4f85436163 (diff) | |
download | postgresql-3090213690bd69dd46dae865a2021982e7309208.tar.gz postgresql-3090213690bd69dd46dae865a2021982e7309208.zip |
Fix comment from commit 22655aa231.
Per automated complaint from BF animal koel this needed to be
re-indented, but there was also a typo. Back-patch to 16.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/heapam.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 9a7a967b3aa..ed0f612ab3e 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -1803,10 +1803,10 @@ ReleaseBulkInsertStatePin(BulkInsertState bistate) bistate->current_buf = InvalidBuffer; /* - * Despite the name, we also reset bulk relation extension - * state. Otherwise we can end up erroring out due to looking for free - * space in ->next_free of one partition, even though ->next_free was set - * when extending another partition. It's obviously also could be bad for + * Despite the name, we also reset bulk relation extension state. + * Otherwise we can end up erroring out due to looking for free space in + * ->next_free of one partition, even though ->next_free was set when + * extending another partition. It could obviously also be bad for * efficiency to look at existing blocks at offsets from another * partition, even if we don't error out. */ |