diff options
author | David Rowley | 2024-12-20 10:22:37 +0000 |
---|---|---|
committer | David Rowley | 2024-12-20 10:22:37 +0000 |
commit | 02a8d0c45253eb54e57b1974c8627e5be3e1d852 (patch) | |
tree | b87019e24e20f27319f9e5f8a065af0f15b603b5 /src/backend/catalog/index.c | |
parent | 546371599e767340599cdff3e276728016e560cc (diff) |
Remove pg_attribute.attcacheoff column
The column is no longer needed as the offset is now cached in the
CompactAttribute struct per commit 5983a4cff.
Author: David Rowley
Reviewed-by: Andres Freund, Victor Yegorov
Discussion: https://postgr.es/m/CAApHDvrBztXP3yx=NKNmo3xwFAFhEdyPnvrDg3=M0RhDs+4vYw@mail.gmail.com
Diffstat (limited to 'src/backend/catalog/index.c')
-rw-r--r-- | src/backend/catalog/index.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 6200a0da501..6976249e9e9 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -320,7 +320,6 @@ ConstructTupleDescriptor(Relation heapRelation, MemSet(to, 0, ATTRIBUTE_FIXED_PART_SIZE); to->attnum = i + 1; - to->attcacheoff = -1; to->attislocal = true; to->attcollation = (i < numkeyatts) ? collationIds[i] : InvalidOid; |