postgres_fdw: Fix incorrect NULL handling in join pushdown.
Robert Haas <rhaas@postgresql.org>
postgres_fdw: Fix incorrect NULL handling in join pushdown. something.* IS NOT NULL means that every attribute of the row is not NULL, not that the row itself is non-NULL (e.g. because it's coming from below an outer join. Use (somevar.*)::pg_catalog.text IS NOT NULL instead. Ashutosh Bapat, per a report by Rushabh Lathia. Reviewed by Amit Langote and Etsuro Fujita. Schema-qualification added by me.
Files
| Path | Change | +/− |
|---|---|---|
| contrib/postgres_fdw/deparse.c | modified | +4 −4 |
| contrib/postgres_fdw/expected/postgres_fdw.out | modified | +41 −21 |
| contrib/postgres_fdw/sql/postgres_fdw.sql | modified | +5 −0 |