summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Munro2023-10-16 00:23:51 +0000
committerThomas Munro2023-10-16 00:32:41 +0000
commit01529c7040088db2718628d0814058598152bd39 (patch)
treec300a3c33626e1510dc172a513bc2c696618d46a
parente83d1b0c40ccda8955f1245087f0697652c4df86 (diff)
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.
-rw-r--r--src/backend/access/heap/heapam.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c
index 3c0895518f..14de8158d4 100644
--- a/src/backend/access/heap/heapam.c
+++ b/src/backend/access/heap/heapam.c
@@ -1794,10 +1794,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.
*/