pgsql: Fix assertion failure when Parallel Append is run serially.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix assertion failure when Parallel Append is run serially.
Date: 2018-02-28 15:59:16
Message-ID: E1er48S-0004Lp-HL@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix assertion failure when Parallel Append is run serially.

Parallel-aware plan nodes must be prepared to run without parallelism
if it's not possible at execution time for whatever reason. Commit
ab72716778128fb63d54ac256adf7fe6820a1185, which introduced Parallel
Append, overlooked this.

Rajkumar Raghuwanshi reported this problem, and I included his test
case in this patch. The code changes are by me.

Discussion: http://postgr.es/m/CAKcux6=WqkUudLg1GLZZ7fc5ScWC1+Y9qD=pAHeqy32WoeJQvw@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/executor/nodeAppend.c | 21 ++++++++++++++-------
src/test/regress/expected/select_parallel.out | 11 +++++++++++
src/test/regress/sql/select_parallel.sql | 6 ++++++
3 files changed, 31 insertions(+), 7 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2018-02-28 16:49:00 pgsql: Document LWTRANCHE_PARALLEL_HASH_JOIN.
Previous Message Robert Haas 2018-02-28 15:20:05 pgsql: postgres_fdw: Third attempt to stabilize regression tests.