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

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the
Date: 2005-05-24 18:03:25
Message-ID: 20050524180325.1A622528C9@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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:
----
REL7_4_STABLE

Modified Files:
--------------
pgsql/src/backend/optimizer/path:
joinpath.c (r1.82.2.2 -> r1.82.2.3)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/path/joinpath.c.diff?r1=1.82.2.2&r2=1.82.2.3)

Browse pgsql-committers by date

  From Date Subject
Next Message User Petere 2005-05-24 20:32:09 plsh - plsh: Imported Sources
Previous Message Tom Lane 2005-05-24 18:02:55 pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the