Re: BUG #18284: Filter in left lateral join not respected
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Richard Guo <guofenglinux@gmail.com>
Cc: holger.reise@vitagroup.ag, pgsql-bugs@lists.postgresql.org
Date: 2024-01-12T14:59:39Z
Lists: pgsql-bugs
Richard Guo <guofenglinux@gmail.com> writes: > On Fri, Jan 12, 2024 at 1:30 AM Tom Lane <tgl@sss.pgh.pa.us> wrote: >> Somehow that didn't cause any visible >> problems before 4be058fe9, or more likely we just didn't get any >> relevant trouble reports. > I believe it should be the latter case. It's not hard to show this > problem before 4be058fe9. > create table t (a int); > insert into t values (1); > # select t2a_lateral from t t1 > left join (select coalesce(t2.a) as a from t t2) s on true > left join lateral (select s.a as t2a_lateral from t t3) ss on false; > t2a_lateral > ------------- > 1 > (1 row) Ah, of course. The previous test case had FROM-less subselects, so prior to 4be058fe9 we couldn't flatten those and the bug didn't manifest. But with ordinary FROM clauses, boom! Now I'm fairly astonished that this was never reported before. You'd think in ten years somebody would've noticed. regards, tom lane
Commits
-
Allow subquery pullup to wrap a PlaceHolderVar in another one.
- 29f114b6ff0c 17.0 landed
- ea1d54288ff0 14.11 landed
- bfd28bb07a1f 13.14 landed
- a0b4fda442a7 15.6 landed
- 80bece312c4b 16.2 landed
- 69c12c417409 12.18 landed
-
In the planner, replace an empty FROM clause with a dummy RTE.
- 4be058fe9ec5 12.0 cited