pgsql: Fix problems with the "role" GUC and parallel query.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix problems with the "role" GUC and parallel query.
Date: 2017-10-29 07:45:08
Message-ID: [email protected]
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix problems with the "role" GUC and parallel query.

Without this fix, dropping a role can sometimes result in parallel
query failures in sessions that have used "SET ROLE" to assume the
dropped role, even if that setting isn't active any more.

Report by Pavan Deolasee. Patch by Amit Kapila, reviewed by me.

Discussion: http://postgr.es/m/CABOikdOomRcZsLsLK+Z+qENM1zxyaWnAvFh3MJZzZnnKiF+REg@mail.gmail.com

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/f74f871b80a13ef72b19e3d829a109f8df0df792

Modified Files
--------------
src/backend/access/transam/parallel.c | 11 +++++++++++
src/backend/utils/misc/guc.c | 25 +++++++++----------------
src/include/utils/guc.h | 1 +
src/test/regress/expected/select_parallel.out | 14 ++++++++++++++
src/test/regress/sql/select_parallel.sql | 8 ++++++++
5 files changed, 43 insertions(+), 16 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2017-10-29 16:24:59 pgsql: Allow parallel query for prepared statements with generic plans.
Previous Message Robert Haas 2017-10-29 07:31:09 pgsql: pg_receivewal: Add --no-sync option.