Re: BTScanOpaqueData size slows down tests

From: Álvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Andres Freund <andres(at)anarazel(dot)de>, pgsql-hackers(at)postgresql(dot)org, Peter Geoghegan <pg(at)bowt(dot)ie>
Subject: Re: BTScanOpaqueData size slows down tests
Date: 2025-04-02 16:31:55
Message-ID: 202504021631.d7rglevv7xt6@alvherre.pgsql
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 2025-Apr-02, Tom Lane wrote:

> Andres Freund <andres(at)anarazel(dot)de> writes:
> > I'm a bit confused by the "MUST BE LAST" comment:
> > BTScanPosItem items[MaxTIDsPerBTreePage]; /* MUST BE LAST */
>
> Yeah, me too. It looks like it might've been intended to allow
> the items[] array to be only partially allocated. But as Peter
> says, we don't do that. Too long ago to be sure :=(

The mentioned commit (09cb5c0e7d6f) shows that we do partial memcpys, e.g.

+ memcpy(&so->markPos, &so->currPos,
+ offsetof(BTScanPosData, items[1]) +
+ so->currPos.lastItem * sizeof(BTScanPosItem));

That would obviously not work if this field weren't last. We still do
that, don't we? See btrestrpos().

--
Álvaro Herrera PostgreSQL Developer — https://www.EnterpriseDB.com/
"Before you were born your parents weren't as boring as they are now. They
got that way paying your bills, cleaning up your room and listening to you
tell them how idealistic you are." -- Charles J. Sykes' advice to teenagers

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Peter Geoghegan 2025-04-02 16:36:10 Re: BTScanOpaqueData size slows down tests
Previous Message Sami Imseih 2025-04-02 16:22:54 Re: RFC: Logging plan of the running query