Re: Parallelize correlated subqueries that execute within each worker - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Parallelize correlated subqueries that execute within each worker
Date
Msg-id 2380556.1706672041@sss.pgh.pa.us
Whole thread Raw
In response to Re: Parallelize correlated subqueries that execute within each worker  (James Coleman <jtc331@gmail.com>)
Responses Re: Parallelize correlated subqueries that execute within each worker
List pgsql-hackers
James Coleman <jtc331@gmail.com> writes:
> I've finally had a chance to look at this, and I don't believe there's
> any real failure here, merely drift of how the planner works on master
> resulting in this query now being eligible for a different plan shape.

> I was a bit wary at first because the changing test query is one I'd
> previously referenced in [1] as likely exposing the bug I'd fixed
> where params where being used across worker boundaries. However
> looking at the diff in the patch at that point (v10) that particular
> test query formed a different plan shape (there were two gather nodes
> being created, and params crossing between them).

> But in the current revision of master with the current patch applied
> that's no longer true: we have a Gather node, and the Subplan using
> the param is properly under that Gather node, and the param should be
> being both generated and consumed within the same worker process.

Hmm ... so the question this raises for me is: was that test intended
to verify behavior of params being passed across workers?  If so,
haven't you broken the point of the test?  This doesn't mean that
your code change is wrong; but I think maybe you need to find a way
to modify that test case so that it still tests what it's meant to.
This is a common hazard when changing the planner's behavior.

            regards, tom lane



pgsql-hackers by date:

Previous
From: Roman Lozko
Date:
Subject: libpq fails to build with TSAN
Next
From: Alexander Lakhin
Date:
Subject: Re: Fix some ubsan/asan related issues