Re: BUG: IS NOT NULL on RECORD variable fails in 17.5-dev - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG: IS NOT NULL on RECORD variable fails in 17.5-dev
Date
Msg-id 1603234.1754596435@sss.pgh.pa.us
Whole thread Raw
In response to BUG: IS NOT NULL on RECORD variable fails in 17.5-dev  (Peter Praxmarer <ppraxmarer@gmail.com>)
List pgsql-bugs
Peter Praxmarer <ppraxmarer@gmail.com> writes:
> I have discovered what appears to be a severe bug in a development version
> of PostgreSQL 17 where a populated RECORD variable incorrectly fails an IS
> NOT NULL check.

No, that's behaving per SQL standard, and the same as many PG versions
before it.  Per [1]:

    If the expression is row-valued, then IS NULL is true when the row
    expression itself is null or when all the row's fields are null,
    while IS NOT NULL is true when the row expression itself is
    non-null and all the row's fields are non-null. Because of this
    behavior, IS NULL and IS NOT NULL do not always return inverse
    results for row-valued expressions; in particular, a row-valued
    expression that contains both null and non-null fields will return
    false for both tests.

IMHO this wasn't one of the SQL committee's better ideas, but we're
stuck with it.

            regards, tom lane

[1] https://www.postgresql.org/docs/current/functions-comparison.html



pgsql-bugs by date:

Previous
From: Peter Praxmarer
Date:
Subject: BUG: IS NOT NULL on RECORD variable fails in 17.5-dev
Next
From: "David G. Johnston"
Date:
Subject: Re: BUG: IS NOT NULL on RECORD variable fails in 17.5-dev