Re: page macros cleanup - Mailing list pgsql-patches

From Zdenek Kotala
Subject Re: page macros cleanup
Date
Msg-id 486DD1D1.50604@sun.com
Whole thread Raw
In response to Re: page macros cleanup  ("Pavan Deolasee" <pavan.deolasee@gmail.com>)
Responses Re: page macros cleanup
List pgsql-patches
Pavan Deolasee napsal(a):
> On Fri, Jun 13, 2008 at 9:38 PM, Zdenek Kotala <Zdenek.Kotala@sun.com> wrote:
>> I attached code cleanup which is related to in-place upgrade. I replace
>> direct access to PageHeader structure with already existing macros and I
>> removed also unnecessary retyping.
>
> A quick review comment:

Thanks you for your review,

>
> One thing I noticed is that the modified definition of HashMaxItemSize
> now does not account for the size of ItemId which may not be the right
> thing. Please recheck that.

Good catch. I lost in basic arithmetic. What I see now that original definition
count sizeof(ItemIdData) twice and on other side it does not take care about
MAXALING correctly. I think correct formula is:

#define HashMaxItemSize(page) \
         (PageGetPageSize(page) - \
           ( MAXALIGN(SizeOfPageHeaderData + sizeof(ItemIdData))+ \
             MAXALIGN(sizeof(HashPageOpaqueData)) \
           )\
          )

What do you think?

    Thanks for your comments Zdenek


--
Zdenek Kotala              Sun Microsystems
Prague, Czech Republic     http://sun.com/postgresql


pgsql-patches by date:

Previous
From: Tom Raney
Date:
Subject: Re: Explain XML patch v2
Next
From: "Heikki Linnakangas"
Date:
Subject: Multi-column GIN