pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the - Mailing list pgsql-committers

From tgl@svr1.postgresql.org (Tom Lane)
Subject pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the
Date
Msg-id 20050524180255.C3424528A7@svr1.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Previous fix for "x FULL JOIN y ON true" failed to handle the case
where there was also a WHERE-clause restriction that applied to the
join.  The check on restrictlist == NIL is really unnecessary anyway,
because select_mergejoin_clauses already checked for and complained
about any unmergejoinable join clauses.  So just take it out.

Tags:
----
REL8_0_STABLE

Modified Files:
--------------
    pgsql/src/backend/optimizer/path:
        joinpath.c (r1.91.4.1 -> r1.91.4.2)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/path/joinpath.c.diff?r1=1.91.4.1&r2=1.91.4.2)

pgsql-committers by date:

Previous
From: tgl@svr1.postgresql.org (Tom Lane)
Date:
Subject: pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the
Next
From: tgl@svr1.postgresql.org (Tom Lane)
Date:
Subject: pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the