Missed parallelism option in plpgsql? - Mailing list pgsql-hackers

From Tom Lane
Subject Missed parallelism option in plpgsql?
Date
Msg-id 4334.1513797985@sss.pgh.pa.us
Whole thread Raw
Responses Re: Missed parallelism option in plpgsql?  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
I happened to notice that while writing this in plpgsql
will consider a parallel plan:

    select count(*) into s from tenk1 where ten = x;

writing this will not:

    s := count(*) from tenk1 where ten = x;

Is that intentional?  Seems to me these cases ought to be
treated the same.

The reason for it is that exec_assign_expr's call of
exec_prepare_plan does not specify CURSOR_OPT_PARALLEL_OK.

            regards, tom lane


pgsql-hackers by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: Cost Model
Next
From: neto brpr
Date:
Subject: Re: Cost Model