]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Don't allow LIMIT/OFFSET clause within sub-selects to be pushed to workers.
authorAmit Kapila <akapila@postgresql.org>
Fri, 14 Sep 2018 04:47:31 +0000 (10:17 +0530)
committerAmit Kapila <akapila@postgresql.org>
Fri, 14 Sep 2018 04:47:31 +0000 (10:17 +0530)
commit568b4e1fdeb37361b1f5c5b1e1d5a1b998f7a9e9
treea219e3c1de75dfc0db0258302d37738161fbaa48
parent271b678436ce83bdd6bb355f9fcc011dafdd0122
Don't allow LIMIT/OFFSET clause within sub-selects to be pushed to workers.

Allowing sub-select containing LIMIT/OFFSET in workers can lead to
inconsistent results at the top-level as there is no guarantee that the
row order will be fully deterministic.  The fix is to prohibit pushing
LIMIT/OFFSET within sub-selects to workers.

Reported-by: Andrew Fletcher
Bug: 15324
Author: Amit Kapila
Reviewed-by: Dilip Kumar
Backpatch-through: 9.6
Discussion: https://postgr.es/m/153417684333.10284.11356259990921828616@wrigleys.postgresql.org
src/backend/optimizer/path/allpaths.c
src/backend/optimizer/plan/planner.c
src/include/optimizer/planner.h
src/test/regress/expected/select_parallel.out
src/test/regress/sql/select_parallel.sql