Re: [HACKERS] Declarative partitioning vs. sql_inheritance

Поиск
Список
Период
Сортировка
От Robert Haas
Тема Re: [HACKERS] Declarative partitioning vs. sql_inheritance
Дата
Msg-id CA+TgmoaAOBGJ1pN_vnyzX-3RZ_sj17Pcwa3QE9bhqSoMgdF8Zg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [HACKERS] Declarative partitioning vs. sql_inheritance  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: [HACKERS] Declarative partitioning vs. sql_inheritance  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Fri, Dec 23, 2016 at 11:59 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Robert Haas <robertmhaas@gmail.com> writes:
>> Great, committed.  I realize just now that I forgot to credit anyone
>> as a reviewer, but hopefully nobody's going to mind that too much
>> considering this is a purely mechanical patch I wrote in 20 minutes.
>
> Do you have any particular objection to taking the next step of removing
> enum InhOption in favor of making inhOpt a bool?  It seems to me that
> stuff like
>
> -       bool        recurse = interpretInhOption(rv->inhOpt);
> +       bool        recurse = (rv->inhOpt == INH_YES);
>
> just begs the question of why it's not simply
>
>         bool        recurse = rv->inh;
>
> Certainly a reader who did not know the history would be confused at
> the useless-looking complexity.

No, not really.  I don't feel like it's an improvement, but you and
Alvaro obviously do, so have at it.

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Declarative partitioning vs. sql_inheritance
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Declarative partitioning vs. sql_inheritance