[COMMITTERS] pgsql: Allow parallel query for prepared statements with genericplans. - Mailing list pgsql-committers

From Robert Haas
Subject [COMMITTERS] pgsql: Allow parallel query for prepared statements with genericplans.
Date
Msg-id E1e8BIc-00081b-8V@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow parallel query for prepared statements with generic plans.

This was always intended to work, but due to an oversight in
max_parallel_hazard_walker, it didn't.  In testing, we missed the
fact that it was only working for custom plans, where the parameter
value has been substituted for the parameter itself early enough
that everything worked.  In a generic plan, the Param node survives
and must be treated as parallel-safe.  SerializeParamList provides
for the transmission of parameter values to workers.

Amit Kapila with help from Kuntal Ghosh.  Some changes by me.

Discussion: http://postgr.es/m/CAA4eK1+_BuZrmVCeua5Eqnm4Co9DAXdM5HPAOE2J19ePbR912Q@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/682ce911f8f30de39b13cf211fc8ceb8c6cbc01b

Modified Files
--------------
src/backend/optimizer/util/clauses.c          |  8 ++++++--
src/pl/plpgsql/src/pl_exec.c                  | 10 +++++-----
src/test/regress/expected/select_parallel.out | 20 ++++++++++++++++++++
src/test/regress/sql/select_parallel.sql      |  6 ++++++
4 files changed, 37 insertions(+), 7 deletions(-)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Rethink the dependencies recorded for FieldSelect/FieldStorenod
Next
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Fix crash when columns have been added to the end of a view.