Re: strange IS NULL behaviour

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: strange IS NULL behaviour
Дата
Msg-id 28090.1372969760@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: strange IS NULL behaviour  (Bruce Momjian <bruce@momjian.us>)
Ответы Re: strange IS NULL behaviour  (Alvaro Herrera <alvherre@2ndquadrant.com>)
Re: strange IS NULL behaviour  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-hackers
Bruce Momjian <bruce@momjian.us> writes:
> I developed the attached patch which properly recurses into ROW()
> records checking for NULLs;  you can see it returns the right answer in
> all cases (and constant folds too):

My recollection of the previous discussion is that we didn't have
consensus on what the "right" behavior is, so I'm not sure you can just
assert that this patch is right.  In any case this is only touching the
tip of the iceberg.  If we intend that rows of nulls should be null,
then we have got issues with, for example, NOT NULL column constraint
checks, which don't have any such recursion built into them.  I think
the same is true for plpgsql variable NOT NULL restrictions, and there
are probably some other places.

> The optimizer seems like the right place to fix this, per my patch.

No, it isn't, or at least it's far from the only place.  If we're going
to change this, we would also want to change the behavior of tests on
RECORD values, which is something that would have to happen at runtime.
        regards, tom lane



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

Предыдущее
От: Fabien COELHO
Дата:
Сообщение: Re: [PATCH] big test separation POC
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: strange IS NULL behaviour