Re: Save a few bytes in pg_attribute

From: Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Andres Freund <andres(at)anarazel(dot)de>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Save a few bytes in pg_attribute
Date: 2023-03-21 16:36:48
Message-ID: f97a8cd0-009d-4a13-3317-1273a7de35f1@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 21.03.23 00:51, Tom Lane wrote:
> Andres Freund <andres(at)anarazel(dot)de> writes:
>> On 2023-03-20 10:37:36 -0400, Tom Lane wrote:
>>> I agree that attinhcount could be narrowed, but I have some concern
>>> about attstattarget. IIRC, the limit on attstattarget was once 1000
>>> and then we raised it to 10000. Is it inconceivable that we might
>>> want to raise it to 100000 someday?
>
>> Hard to believe that'd happen in a minor version - and I don't think there'd
>> an issue with widening it again in a major version?
>
> True. However, I think Tomas' idea of making these columns nullable
> is even better than narrowing them.

The context of my message was to do the proposed change for PG16 to buy
back a few bytes that are being added by another feature, and then
consider doing a larger detangling of pg_attribute and tuple descriptors
in PG17, which might well involve taking the attstattarget out of the
hot path. Making attstattarget nullable (i.e., not part of the fixed
part of pg_attribute) would require fairly significant surgery, so I
think it would be better done as part of a more comprehensive change
that would allow the same treatment for other columns as well.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andres Freund 2023-03-21 16:43:23 Re: Save a few bytes in pg_attribute
Previous Message Andres Freund 2023-03-21 16:34:14 Re: CREATE DATABASE ... STRATEGY WAL_LOG issues