From 63592e744e5166fd76fa5ad6498f98084df89494 Mon Sep 17 00:00:00 2001 From: Tender Wang Date: Tue, 5 Nov 2024 19:21:52 +0800 Subject: [PATCH] Remove an obsolete comment in gistinsert() --- src/backend/access/gist/gist.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 3ae913e023..177786a13f 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -179,8 +179,7 @@ gistinsert(Relation r, Datum *values, bool *isnull, oldCxt = MemoryContextSwitchTo(giststate->tempCxt); - itup = gistFormTuple(giststate, r, - values, isnull, true /* size is currently bogus */ ); + itup = gistFormTuple(giststate, r, values, isnull, true); itup->t_tid = *ht_ctid; gistdoinsert(r, itup, 0, giststate, heapRel, false); -- 2.25.1