From 5cdbec5aa9dcf5b30ad68485abdb1ec88324999f Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Fri, 19 Dec 2025 14:33:38 +0900 Subject: [PATCH] Fix typos in gininsert.c Introduced by 8492feb98f6d. Author: Xingbin She Discussion: https://postgr.es/m/tencent_C254AE962588605F132DB4A6F87205D6A30A@qq.com --- src/backend/access/gin/gininsert.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/access/gin/gininsert.c b/src/backend/access/gin/gininsert.c index df30dcc0228..88246071c4b 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); tuplesort_end(worker_sort); -- 2.39.5