From 4171c44c9b791da3c00386dc6d8e6b1842e3036b Mon Sep 17 00:00:00 2001 From: David Rowley Date: Tue, 3 Dec 2024 17:12:38 +1300 Subject: 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 --- src/backend/commands/tablecmds.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/backend/commands/tablecmds.c') diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 49374782625..6ccae4cb4a8 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -980,8 +980,6 @@ DefineRelation(CreateStmt *stmt, char relkind, Oid ownerId, cookedDefaults = lappend(cookedDefaults, cooked); attr->atthasdef = true; } - - populate_compact_attribute(descriptor, attnum - 1); } /* @@ -1398,8 +1396,6 @@ BuildDescForRelation(const List *columns) att->attstorage = entry->storage; else if (entry->storage_name) att->attstorage = GetAttributeStorage(att->atttypid, entry->storage_name); - - populate_compact_attribute(desc, attnum - 1); } return desc; -- cgit v1.2.3