Re: BRIN page type identifier

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BRIN page type identifier
Дата
Msg-id 14066.1425958751@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: BRIN page type identifier  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: BRIN page type identifier  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
I wrote:
> You could try something like
> typedef struct BrinSpecialSpace
> {
>     uint16        vector[MAXALIGN(1) / sizeof(uint16)];
> } BrinSpecialSpace;
> and then some access macros to use the last and next-to-last
> elements of that array.

On second thought, consider

typedef struct BrinSpecialSpace
{uint16        flags;uint16        vector[MAXALIGN(1) / sizeof(uint16) - 1];
} BrinSpecialSpace;

This way, accesses to "flags" require no source code changes.
You still need a macro to map "type" onto the last element of
the vector, but there's probably about one reference to "type"
in the source code so it shouldn't be too painful.
        regards, tom lane



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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: BRIN page type identifier
Следующее
От: Amit Kapila
Дата:
Сообщение: Re: TABLESAMPLE patch