Re: [HACKERS] safer node casting

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] safer node casting
Дата
Msg-id 6303.1487951669@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] safer node casting  (Andres Freund <andres@anarazel.de>)
Ответы Re: [HACKERS] safer node casting  (Peter Eisentraut <peter.eisentraut@2ndquadrant.com>)
Список pgsql-hackers
Andres Freund <andres@anarazel.de> writes:
> Those aren't actually equivalent, because of the !nodeptr. IsA() crashes
> for NULL pointers, but the new code won't. Which means 9ba8a9ce4548b et
> al actually weakened some asserts.

> Should we perhaps have one NULL accepting version (castNodeNull?) and
> one that separately asserts that ptr != NULL?

-1 ... if you're going to use something in a way that requires it not tobe null, your code will crash quite efficiently
ona null, with orwithout an assert.  I don't think we need the extra cogitive burden oftwo distinct macros for this.
 
        regards, tom lane



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

Предыдущее
От: Dilip Kumar
Дата:
Сообщение: Re: [HACKERS] utility commands benefiting from parallel plan
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] btree_gin and btree_gist for enums