Re: page macros cleanup - Mailing list pgsql-patches

From Heikki Linnakangas
Subject Re: page macros cleanup
Date
Msg-id 486E01B0.9050100@enterprisedb.com
Whole thread Raw
In response to Re: page macros cleanup  ("Pavan Deolasee" <pavan.deolasee@gmail.com>)
Responses Re: page macros cleanup
Re: page macros cleanup
List pgsql-patches
Pavan Deolasee wrote:
> On Fri, Jul 4, 2008 at 3:37 PM, Heikki Linnakangas
> <heikki@enterprisedb.com> wrote:
>>
>> I think this is the way it should be:
>>
>> #define HashMaxItemSize \
>>        (BLCKSZ - \
>>         SizeOfPageHeaderData - \
>>         MAXALIGN(sizeof(HashPageOpaqueData)) - \
>>         sizeof(ItemIdData))
>>
>
> I am wondering if this would fail for corner case if HashMaxItemSize
> happened to be unaligned. For example, if (itemsz < HashMaxItemSize <
> MAXALIGN(itemsz), PageAddItem() would later fail with a not-so-obvious
> error. Should we just MAXALIGN_DOWN the HashMaxItemSize ?

No, there's a itemsz = MAXALIGN(itemsz) call before the check against
HashMaxItemSize.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

pgsql-patches by date:

Previous
From: Zdenek Kotala
Date:
Subject: Re: page macros cleanup
Next
From: "Pavan Deolasee"
Date:
Subject: Re: page macros cleanup