pgsql: Teach predtest.c that "foo" implies "foo IS NOT NULL". - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Teach predtest.c that "foo" implies "foo IS NOT NULL".
Date
Msg-id E1ZLbZn-0000UE-7c@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Teach predtest.c that "foo" implies "foo IS NOT NULL".

Per complaint from Peter Holzer.  It's useful to cover this special case,
since for a boolean variable "foo", earlier parts of the planner will have
reduced variants like "foo = true" to just "foo", and thus we may fail
to recognize the applicability of a partial index with predicate
"foo IS NOT NULL".

Back-patch to 9.5, but not further; given the lack of previous complaints
this doesn't seem like behavior to change in stable branches.

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/8dccf030e884ea8c723275a070acf8a8ed1eebe1

Modified Files
--------------
src/backend/optimizer/util/predtest.c |    4 ++++
1 file changed, 4 insertions(+)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Teach predtest.c that "foo" implies "foo IS NOT NULL".
Next
From: Tom Lane
Date:
Subject: pgsql: Fix some planner issues with degenerate outer join clauses.