Re: Remove redundant initializations

Поиск
Список
Период
Сортировка
От David Rowley
Тема Re: Remove redundant initializations
Дата
Msg-id CAApHDvotvHn4Q8wELdKeLX9K7WQKWhQYhsxDvSfw9D3pdtFqgQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Remove redundant initializations  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Remove redundant initializations  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Tue, 29 Jun 2021 at 02:15, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> The primary case where I personally rely on that style is when adding a
> new field to a struct.  Currently it's possible to grep for some existing
> field and add the new one beside it.  Leaving out initializations by
> relying on side-effects of makeNode makes that far riskier.

FWIW, I mostly grep for makeNode(NameOfNode) as I'm a bit mistrusting
of if the random existing field name that I pick to grep for will
properly showing me all the locations I should touch.

David



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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: cleaning up PostgresNode.pm
Следующее
От: Andrey Lepikhov
Дата:
Сообщение: Re: Merging statistics from children instead of re-sampling everything