Re: page macros cleanup

Поиск
Список
Период
Сортировка
От Pavan Deolasee
Тема Re: page macros cleanup
Дата
Msg-id 2e78013d0807040350m3b2913cfkceaa70d8f9d697c2@mail.gmail.com
обсуждение исходный текст
Ответ на Re: page macros cleanup  ("Heikki Linnakangas" <heikki@enterprisedb.com>)
Ответы Re: page macros cleanup  ("Heikki Linnakangas" <heikki@enterprisedb.com>)
Список pgsql-patches
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 ?

Thanks,
Pavan


--
Pavan Deolasee
EnterpriseDB http://www.enterprisedb.com

В списке pgsql-patches по дате отправления:

Предыдущее
От: "Heikki Linnakangas"
Дата:
Сообщение: Re: page macros cleanup
Следующее
От: Zdenek Kotala
Дата:
Сообщение: Re: page macros cleanup