[PATCH v1] Fixed a spelling error in the comments in gininsert.c

From: Xingbin She <xingbin(dot)she(at)qq(dot)com>
To: pgsql-hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: [PATCH v1] Fixed a spelling error in the comments in gininsert.c
Date: 2025-12-19 02:47:22
Message-ID: tencent_C254AE962588605F132DB4A6F87205D6A30A@qq.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi hackers,

This patch fixs a typo in gin code comments, detial as follows:

diff --git a/src/backend/access/gin/gininsert.c b/src/backend/access/gin/gininsert.c
index df30dcc..8824607 100644
--- a/src/backend/access/gin/gininsert.c
+++ b/src/backend/access/gin/gininsert.c
@@ -1784,7 +1784,7 @@ _gin_parallel_merge(GinBuildState *state)
++numtuples);
}

- /* relase all the memory */
+ /* release all the memory */
GinBufferFree(buffer);

tuplesort_end(state->bs_sortstate);
@@ -1972,7 +1972,7 @@ _gin_process_worker_data(GinBuildState *state, Tuplesortstate *worker_sort,
GinBufferReset(buffer);
}

- /* relase all the memory */
+ /* release all the memory */
GinBufferFree(buffer);

--
Best regards,
Xingbin SHE
Email: xingbin(dot)she(at)qq(dot)com

Attachment Content-Type Size
v1-0001-Fixed-a-spelling-error-in-the-comments-in-gininse.patch application/octet-stream 1.0 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Xuneng Zhou 2025-12-19 02:49:46 Re: Implement waiting for wal lsn replay: reloaded
Previous Message Peter Smith 2025-12-19 02:19:47 Re: [WIP]Vertical Clustered Index (columnar store extension) - take2