Re: FULL JOIN is only supported with merge-joinable join conditions - Mailing list pgsql-general

From Tom Lane
Subject Re: FULL JOIN is only supported with merge-joinable join conditions
Date
Msg-id 8601.1262838211@sss.pgh.pa.us
Whole thread Raw
In response to Re: FULL JOIN is only supported with merge-joinable join conditions  ("hx.li" <fly2nn@126.com>)
List pgsql-general
"hx.li" <fly2nn@126.com> writes:
> If we could consider it is equivalent transformation as follow?

> select * from t_1 full outer join t_3 on t_1.a=1;
> and
> select * from t_1 full outer join t_3 on true where t_1.a=1;

Those are not equivalent.

            regards, tom lane

pgsql-general by date:

Previous
From: "hx.li"
Date:
Subject: Re: FULL JOIN is only supported with merge-joinable join conditions
Next
From: Adrian Klaver
Date:
Subject: Re: How to call SETOF function?