diff options
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 3ae913e0230..177786a13f8 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); |