On Fri, 31 Jul 2026 at 09:06, Dan Stefura <dstefura(at)bluecatnetworks(dot)com>
wrote:
> Our workaround is to set enable_hashjoin=off for this specific query.
>
Thanks for the report.
Another workaround that would be possible if it's only that one column that
can be NULL would be to put that one last in the join condition. The bug
was triggered because the NULL value wasn't last, and if it had been last,
then it wouldn't have triggered the bug. However, if you can't guarantee
that some other column won't be NULL, then enable_hashjoin=off is the safer
option until the minor version is released.
David