aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/spgist/spgutils.c
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2024-12-03 17:12:38 +1300
committerDavid Rowley <drowley@postgresql.org>2024-12-03 17:12:38 +1300
commit4171c44c9b791da3c00386dc6d8e6b1842e3036b (patch)
tree304a009d9a2b3b3df52033019a3f210a53f79823 /src/backend/access/spgist/spgutils.c
parentd28dff3f6cd6a7562fb2c211ac0fb74a33ffd032 (diff)
downloadpostgresql-4171c44c9b791da3c00386dc6d8e6b1842e3036b.tar.gz
postgresql-4171c44c9b791da3c00386dc6d8e6b1842e3036b.zip
Revert "Introduce CompactAttribute array in TupleDesc"
This reverts commit d28dff3f6cd6a7562fb2c211ac0fb74a33ffd032. Quite a large number of buildfarm members didn't like this commit and it's not yet clear why. Reverting this before too many animals turn red. Discussion: https://postgr.es/m/CAApHDvr9i6T5=iAwQCxFDgMsthr_obVxgwBaEJkC8KUH6yM3Hw@mail.gmail.com
Diffstat (limited to 'src/backend/access/spgist/spgutils.c')
-rw-r--r--src/backend/access/spgist/spgutils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/access/spgist/spgutils.c b/src/backend/access/spgist/spgutils.c
index da858182173..e93d9869b27 100644
--- a/src/backend/access/spgist/spgutils.c
+++ b/src/backend/access/spgist/spgutils.c
@@ -331,9 +331,7 @@ getSpGistTupleDesc(Relation index, SpGistTypeDesc *keyType)
att->attcollation = InvalidOid;
/* In case we changed typlen, we'd better reset following offsets */
for (int i = spgFirstIncludeColumn; i < outTupDesc->natts; i++)
- TupleDescCompactAttr(outTupDesc, i)->attcacheoff = -1;
-
- populate_compact_attribute(outTupDesc, spgKeyColumn);
+ TupleDescAttr(outTupDesc, i)->attcacheoff = -1;
}
return outTupDesc;
}