Re: remove_useless_joins vs. bug #19560

From: Jacob Brazeal <jacob(dot)brazeal(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Thom Brown <thom(at)linux(dot)com>, Richard Guo <guofenglinux(at)gmail(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: remove_useless_joins vs. bug #19560
Date: 2026-07-26 04:27:53
Message-ID: CA+COZaDYG7jCW=cvhTikzmGQBSOOgkBzjPf7xYmsKqzfei=Upg@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

...For completeness the definition of u here is like so:

CREATE TABLE u (id int PRIMARY KEY, a int);
INSERT INTO u (id, a) VALUES
(1, 1),
(2, 2),
(3, 3),
(4, 0),
(5, 1),
(6, 2),
(7, 3),
(8, 0),
(9, 1),
(10, 2);

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Mats Kindahl 2026-07-26 05:11:06 Re: pg_rewind does not rewind diverging timelines
Previous Message Jacob Brazeal 2026-07-26 04:23:00 Re: remove_useless_joins vs. bug #19560