pgsql: Allow Gather Merge in more cases for parallel DISTINCT - Mailing list pgsql-committers

From David Rowley
Subject pgsql: Allow Gather Merge in more cases for parallel DISTINCT
Date
Msg-id E1rVrbB-004Ktn-Fh@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow Gather Merge in more cases for parallel DISTINCT

Here we adjust the partial path generation for parallel DISTINCT queries
to add Sort nodes on top of any unsorted partial distinct paths.

This increases the likelihood of the planner pushing a Sort below a Gather
Merge which enables the final phase of the parallel distinct to be
implemented using a Unique node in more cases.

Sorting the partial distinct paths is particularly useful when the
DISTINCT query has an ORDER BY and LIMIT clause as this can allow cheaper
plans by having the workers Hash Aggregate then Sort before feeding the
results into the Gather Merge.  The non-parallel portion of the plan then
becomes very cheap as it leaves only Unique and Limit to do in the leader
process.

Author: Richard Guo
Reviewed-by: David Rowley
Discussion: https://postgr.es/m/CAMbWs48u9VoVOouJsys1qOaC9WVGVmBa+wT1dx8KvxF5GPzezA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/7e0ade0ffe0a76b1926a4af39ecdf799c96ef1ba

Modified Files
--------------
src/backend/optimizer/plan/planner.c          | 2 +-
src/test/regress/expected/select_distinct.out | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)


pgsql-committers by date:

Previous
From: Noah Misch
Date:
Subject: pgsql: Handle interleavings between CREATE DATABASE steps and base back
Next
From: Tom Lane
Date:
Subject: pgsql: First-draft release notes for 16.2.